LANCommander/LANCommander.Steam/Models/SteamCmdNet/AppAssociation.cs

12 lines
No EOL
266 B
C#

using System.Text.Json.Serialization;
namespace LANCommander.Steam.Models.SteamCmdNet;
public sealed class AppAssociation
{
[JsonPropertyName("name")]
public string? Name { get; set; }
[JsonPropertyName("type")]
public string? Type { get; set; }
}