using System.Collections.Generic; namespace Cryville.Crtr.Config { public class RulesetConfig { public Dictionary inputs = new Dictionary(); } public class InputConfigEntry { public string handler; public int type; } }