11 lines
307 B
C#
11 lines
307 B
C#
|
|
using System.Collections.Generic;
|
||
|
|
using System.Text.Json.Serialization;
|
||
|
|
|
||
|
|
namespace LANCommander.Steam.Models.SteamCmdNet;
|
||
|
|
|
||
|
|
public sealed class RegistryRoot
|
||
|
|
{
|
||
|
|
// Keys look like: "hkey_local_machine\\software\\valve\\cs2"
|
||
|
|
[JsonExtensionData]
|
||
|
|
public Dictionary<string, object>? Keys { get; set; }
|
||
|
|
}
|