AIAConstants.cs
2.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace AIAHTML5.API.Constants
{
public class AIAConstants
{
public const string ERROR_IN_FECTHING_DETAILS = "Error in fecthing details.";
public const string USER_NOT_FOUND = "User not found.";
public const string MAIL_NOT_SENT = "Mail not sent.";
public const string MAIL_SENT = "Mail sent.";
public const string EXCEPTION_OCCURED = "We are facing some issue. Please try to login after sometime.";
public const string EXCEPTION_IN_AIAHTML5_MAIL_SUBJECT = "Exception Occuredin AIAHTML5.";
public const string SQL_CONNECTION_ERROR = "We are unable to connect with database. Please contact customer support.";
public const string SQL_CONNECTION_ERROR_MAIL_SUBJECT = "SQL Connection error in AIAHTML5.";
public const string KEY_ID = "id";
public const string KEY_TITLE = "title";
public const string KEY_NAME = "name";
public const string KEY_SLUG = "slug";
public const string KEY_DESCRIPTION = "Description";
public const string PASSWORD_UPDATE_SUCCESS = "Password updated successfully";
public const string PASSWORD_UPDATE_FAILED = "Password update failed";
public const string INVALID_USER = "Invalid UserID";
public const string LICENSE_TERM_CONDITION_UPDATE_SUCCESS = "License Term Accepted field updated successfully.";
public const string LICENSE_TERM_CONDITION_UPDATE_FAILED = "License Term Accepted field update failed.";
public const string KEY_CONTENT = "content";
public const string LICENSE_KEY_ID = "LicenseId";
public const string EDITION_KEY_ID = "EditionId";
public const string USER_UNBLOCK_SUCCESS = "User unblocked";
public const string USER_UNBLOCK_FAILED = "Unblock operation failed";
public const string UNABLE_TO_UNBLOCK = "We are unable to unblock. Please try after sometime.";
public const string FORGOT_USERID_EMAIL_SUBJECT = "UserID recovery mail for:";
public const string FORGOT_PASSWORD_EMAIL_SUBJECT = "Password recovery mail for:";
public const string UNBLOCK_USER_EMAIL_SUBJECT = "Unblock user request mail for:";
}
}