14 lines
262 B
C#
14 lines
262 B
C#
|
namespace serial{
|
||
|
|
||
|
public class SerialCommands{
|
||
|
public enum Commands{
|
||
|
AddIdentity,
|
||
|
RemoveIdentity,
|
||
|
EncryptToIdentity,
|
||
|
DecryptFromIdentity,
|
||
|
UnknownCommand,
|
||
|
Exit
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|