Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Linq;
|
---|
4 | using System.Text;
|
---|
5 |
|
---|
6 | namespace HeuristicLab.Hive.Contracts {
|
---|
7 | public class ApplicationConstants {
|
---|
8 | public static string RESPONSE_LOGIN_USER_ALLREADY_ONLINE = "Login.UserAllreadyOnline";
|
---|
9 | public static string RESPONSE_LOGIN_SUCCESS = "Login.Success";
|
---|
10 |
|
---|
11 | public static string RESPONSE_LOGOUT_CLIENT_NOT_REGISTERED = "Logout.ClientNotRegistered";
|
---|
12 | public static string RESPONSE_LOGOUT_SUCCESS = "Logout.Success";
|
---|
13 |
|
---|
14 | public static string RESPONSE_USERROLE_GET_ALL_USERS = "UserRole.GetAllUsers";
|
---|
15 | public static string RESPONSE_USERROLE_USER_EXISTS_ALLREADY = "UserRole.UserExistsAllready";
|
---|
16 | public static string RESPONSE_USERROLE_USER_SUCCESSFULLY_ADDED = "UserRole.UserSuccessfullyAdded";
|
---|
17 | public static string RESPONSE_USERROLE_USER_DOESNT_EXIST = "UserRole.UserDoesntExist";
|
---|
18 | public static string RESPONSE_USERROLE_USER_REMOVED = "UserRole.UserRemoved";
|
---|
19 |
|
---|
20 | }
|
---|
21 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.