Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Hive.Contracts/ApplicationConstants.cs @ 903

Last change on this file since 903 was 902, checked in by msteinbi, 16 years ago

Implementation of UserRoleManager (#417)

File size: 511 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5
6namespace 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    public static string RESPONSE_LOGOUT_CLIENT_NOT_REGISTERED = "Logout.ClientNotRegistered";
11    public static string RESPONSE_LOGOUT_SUCCESS = "Logout.Success";
12
13  }
14}
Note: See TracBrowser for help on using the repository browser.