LANCommander/LANCommander.Steam/Models/SteamCmdNet/Branch.cs

18 lines
456 B
C#
Raw Permalink Normal View History

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; }
[JsonPropertyName("timeupdated")]
public string? TimeUpdated { get; set; }
}