AIAConstants.cs 1.84 KB
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_IN_AIAHTML5 = "We are facing some issue. Please try to login after sometime.";
        public const string EXCEPTION_IN_AIAHTML5_MAIL_SUBJECT = "Exception Occured in AIAHTML5";
        public const string SQL_CONNECTION_ERROR = "We are unable to connect with database. Kindly, contact customer support";
        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.";
    }
}