using System; namespace Nuclex.Support.Configuration { /// Informations about an option stored in a settings container public struct OptionInfo { /// Name of the option public string Name; /// Data type of the option public Type OptionType; } } // namespace Nuclex.Support.Configuration