LANCommander/LANCommander.Steam/Models/SteamCmdNet/AppUfs.cs

12 lines
274 B
C#
Raw Permalink Normal View History

using System.Text.Json.Serialization;
namespace LANCommander.Steam.Models.SteamCmdNet;
public sealed class AppUfs
{
[JsonPropertyName("maxnumfiles")]
public string? MaxNumFiles { get; set; }
[JsonPropertyName("quota")]
public string? Quota { get; set; }
}