AIAConstants.cs
1.51 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
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 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 USER_ALREADY_UNBLOCKED = "User already unblocked.";
}
}