16 lines
212 B
C#
Raw Normal View History

2022-03-28 19:52:42 +02:00
using System;
using System.Collections.Generic;
using System.Text;
namespace TomatenMusic.Prompt.Model
{
enum PromptState
{
PREPARED,
OPEN,
INVALID,
RESPONDED
}
}