CMSWebConstant.cs 427 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. namespace CZFW.CMS.Web
  6. {
  7. public class CMSWebConstant
  8. {
  9. public readonly static string CURRENT_SITE_SESSION_NAME = "CurrentSiteSessionName";
  10. public readonly static string PAGE_INDEX_QUERY_STRING_KEY = "pageIndex";
  11. public readonly static string PAGE_SIZE_QUERY_STRING_KEY = "pageSize";
  12. }
  13. }