using Newtonsoft.Json; using System.Collections.Generic; namespace Cryville.Crtr.Config { public class RulesetConfig { public Generic generic = new Generic(); public class Generic { [JsonProperty("skin")] public string Skin { get; set; } } public Dictionary inputs = new Dictionary(); public class InputEntry { public string handler; public int type; } } }