12 lines
No EOL
308 B
C#
12 lines
No EOL
308 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace LANCommander.Steam.Models.SteamCmdNet;
|
|
|
|
public sealed class AppInstall
|
|
{
|
|
[JsonPropertyName("registry")]
|
|
public RegistryRoot? Registry { get; set; }
|
|
|
|
[JsonPropertyName("utf8_registry_strings")]
|
|
public string? UTF8RegistryStrings { get; set; }
|
|
} |