16 lines
212 B
C#
16 lines
212 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace TomatenMusic.Prompt.Model
|
|||
|
{
|
|||
|
enum PromptState
|
|||
|
{
|
|||
|
|
|||
|
PREPARED,
|
|||
|
OPEN,
|
|||
|
INVALID,
|
|||
|
RESPONDED
|
|||
|
}
|
|||
|
}
|