using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using YiSha.Util;
namespace YiSha.Model.Result
{
public class MenuAuthorizeInfo
{
//[JsonConverter(typeof(StringJsonConverter))]
public int MenuId { get; set; }
///
/// 用户Id或者角色Id
///
//[JsonConverter(typeof(StringJsonConverter))]
public int AuthorizeId { get; set; }
///
/// 用户或者角色
///
public int? AuthorizeType { get; set; }
///
/// 权限标识
///
public string Authorize { get; set; }
}
}