18 lines
No EOL
456 B
C#
18 lines
No EOL
456 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace LANCommander.Steam.Models.SteamCmdNet;
|
|
|
|
public sealed class Branch
|
|
{
|
|
[JsonPropertyName("buildid")]
|
|
public string? BuildId { get; set; }
|
|
|
|
[JsonPropertyName("description")]
|
|
public string? Description { get; set; }
|
|
|
|
[JsonPropertyName("timebuildupdated")]
|
|
public string? TimeBuildUpdated { get; set; }
|
|
|
|
[JsonPropertyName("timeupdated")]
|
|
public string? TimeUpdated { get; set; }
|
|
} |