using Hncore.Infrastructure.WebApi; using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace Hncore.Pass.Manage.Request { public class ManagerToPermissionRequest :RequestBase { /// /// 用户数据库ID /// [JsonProperty("Id")] public int Id { get; set; } /// /// 管理员标签 /// [JsonProperty("Tag")] public string Tag { get; set; } /// /// 管理员id /// [JsonProperty("ManagerId")] public int ManagerId { get; set; } /// /// 权限编码 /// [JsonProperty("PermissionCode")] public string PermissionCode { get; set; } } }