using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WIP_Models
{
///
/// WIP权限缓存类型
///
public struct WipAuthType
{
///
/// Redis
///
public const string REDIS = "REDIS";
///
/// 内存
///
public const string MEMORY = "MEMORY";
}
}