Nuclex.Support/Source/Configuration/OptionInfo.cs

16 lines
378 B
C#
Raw Normal View History

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