treasurechest/serial/Commands.cs
2020-06-04 02:09:48 -05:00

14 lines
262 B
C#

namespace serial{
public class SerialCommands{
public enum Commands{
AddIdentity,
RemoveIdentity,
EncryptToIdentity,
DecryptFromIdentity,
UnknownCommand,
Exit
}
}
}