LANCommander/LANCommander.Steam/Models/SteamCmdNet/Branch.cs
2026-05-07 17:54:45 -05:00

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; }
}