hermes-client/Chat/Commands/ChatCommandResult.cs

12 lines
211 B
C#
Raw Normal View History

namespace TwitchChatTTS.Chat.Commands
{
public enum ChatCommandResult
{
Unknown = 0,
Missing = 1,
Success = 2,
Permission = 3,
Syntax = 4,
Fail = 5
}
}