12 lines
266 B
C#
12 lines
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; }
|
||
|
|
}
|