CacheManage.cs 453 Bytes
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;

namespace WeiXinCenter.Cache
{
    public static class CacheManage
    {
        internal static bool CacheInitCompleted { get; private set; }
        public static CacheAutorize Authorize { get; private set; }

        public static void Initialize()
        {
            Authorize = new CacheAutorize();
            CacheInitCompleted = true;
        }

    }
}