46c34f46e8
* WIP signalauth * Fist commit server config
17 lines
321 B
C#
17 lines
321 B
C#
|
|
namespace Step.Config
|
|
{
|
|
public static class Constants
|
|
{
|
|
public enum ACTIONS
|
|
{
|
|
READ,
|
|
WRITE
|
|
}
|
|
|
|
public static string ROLE_LEVEL_KEY = "roleLevel";
|
|
public static string USERNAME_KEY = "username";
|
|
public static string ID_KEY = "id";
|
|
}
|
|
}
|