11 lines
190 B
C#
11 lines
190 B
C#
namespace Parsing.Schema;
|
|
|
|
[Flags]
|
|
public enum InputType
|
|
{
|
|
Integer = BlockType.Integer,
|
|
String = BlockType.String,
|
|
Fragment = BlockType.Fragment,
|
|
Char = BlockType.Char,
|
|
}
|