2026-02-07 18:58:03 -06:00
|
|
|
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; }
|
|
|
|
|
|
2026-05-07 17:54:45 -05:00
|
|
|
[JsonPropertyName("timebuildupdated")]
|
|
|
|
|
public string? TimeBuildUpdated { get; set; }
|
|
|
|
|
|
2026-02-07 18:58:03 -06:00
|
|
|
[JsonPropertyName("timeupdated")]
|
|
|
|
|
public string? TimeUpdated { get; set; }
|
|
|
|
|
}
|