AppConst.cs 1.4 KB

123456789101112131415161718192021222324252627282930
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Ant.ORM
  5. {
  6. /// <summary>
  7. /// ÄÚ²¿³£Á¿Àà
  8. /// </summary>
  9. internal class AppConst
  10. {
  11. #region License ³£Á¿
  12. internal static readonly string Lic_Error_Contact = "\r\nContact Email : contact@cyqdata.com\r\n Official site : www.cyqdata.com";
  13. internal static readonly string Lic_Error_AtNight = "Sorry ! You need to get a license key when you run it at night!";
  14. internal static readonly string Lic_Error_NotBuyProvider = "Sorry ! Your license key not contains this provider function : ";
  15. internal static readonly string Lic_Error_InvalidVerstion = "Sorry ! Your license key verstion invalid!";
  16. internal static readonly string Lic_Error_InvalidKey = "Sorry ! Your license key is invalid!";
  17. internal static readonly string Lic_PublicKey = "CYQ.Data.License";
  18. internal static readonly string Lic_FilePre = "file:\\";
  19. internal static readonly string Lic_UseKeyFileName = "/cyq.data.keys";
  20. internal static readonly string Lic_DevKeyFileName = "/cyq.data.dev.keys";
  21. internal const string Lic_MacKeyType = "mac";
  22. internal const string Lic_DllKeyType = "dll";
  23. #endregion
  24. #region È«¾Ö
  25. internal const string Global_NotImplemented = "The method or operation is not implemented.";
  26. #endregion
  27. }
  28. }