123456789101112131415161718192021222324252627282930 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace Ant.ORM
- {
- /// <summary>
- /// ÄÚ²¿³£Á¿Àà
- /// </summary>
- internal class AppConst
- {
- #region License ³£Á¿
- internal static readonly string Lic_Error_Contact = "\r\nContact Email : contact@cyqdata.com\r\n Official site : www.cyqdata.com";
- internal static readonly string Lic_Error_AtNight = "Sorry ! You need to get a license key when you run it at night!";
- internal static readonly string Lic_Error_NotBuyProvider = "Sorry ! Your license key not contains this provider function : ";
- internal static readonly string Lic_Error_InvalidVerstion = "Sorry ! Your license key verstion invalid!";
- internal static readonly string Lic_Error_InvalidKey = "Sorry ! Your license key is invalid!";
- internal static readonly string Lic_PublicKey = "CYQ.Data.License";
- internal static readonly string Lic_FilePre = "file:\\";
- internal static readonly string Lic_UseKeyFileName = "/cyq.data.keys";
- internal static readonly string Lic_DevKeyFileName = "/cyq.data.dev.keys";
- internal const string Lic_MacKeyType = "mac";
- internal const string Lic_DllKeyType = "dll";
- #endregion
- #region È«¾Ö
- internal const string Global_NotImplemented = "The method or operation is not implemented.";
- #endregion
- }
- }
|