123456789101112131415161718 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- namespace CZFW.CMS.Web
- {
- public class CMSWebConstant
- {
- public readonly static string CURRENT_SITE_SESSION_NAME = "CurrentSiteSessionName";
- public readonly static string PAGE_INDEX_QUERY_STRING_KEY = "pageIndex";
- public readonly static string PAGE_SIZE_QUERY_STRING_KEY = "pageSize";
- }
- }
|