Extract out Help namespace

This commit is contained in:
Matt Nadareski
2020-12-07 13:57:26 -08:00
parent 8d593c585c
commit 6423e46b53
52 changed files with 721 additions and 685 deletions

14
SabreTools.Help/Enums.cs Normal file
View File

@@ -0,0 +1,14 @@
namespace SabreTools.Help
{
/// <summary>
/// Determines the parameter type to check for
/// </summary>
public enum ParameterType
{
Flag = 0,
String,
Int32,
Int64,
List,
}
}