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
    }
}