mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
15 lines
245 B
C#
15 lines
245 B
C#
|
|
namespace SabreTools.Library.Help
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// Determines the feature type to check for
|
|||
|
|
/// </summary>
|
|||
|
|
public enum FeatureType
|
|||
|
|
{
|
|||
|
|
Flag = 0,
|
|||
|
|
String,
|
|||
|
|
Int32,
|
|||
|
|
Int64,
|
|||
|
|
List,
|
|||
|
|
}
|
|||
|
|
}
|