TomatenMusic-V2/TomatenMusicCore/Prompt/Model/PromptState.cs
2022-03-19 22:28:54 +01:00

16 lines
212 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace TomatenMusic.Prompt.Model
{
enum PromptState
{
PREPARED,
OPEN,
INVALID,
RESPONDED
}
}