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

12 lines
No EOL
274 B
C#

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