using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace FirstPlugin { public class MaterialDefineConfig { public Dictionary ParamConfigs = new Dictionary(); public Dictionary OptionConfigs = new Dictionary(); public Dictionary RenderInfoConfigs = new Dictionary(); public Dictionary UserDataConfigs = new Dictionary(); public class ConfigEntry { //The original name of the parameter public string Name { get; set; } //Alternate name a user can give to potentially make it easier to read public string AlternateName { get; set; } //What effect the data gives. public string Description { get; set; } } } }