using System; using System.Collections.Generic; using System.Security.Claims; namespace TEAMModelOS.SDK.Extension.JwtAuth.Models { public class ClaimModel { public ClaimModel() { Claims = new List(); Claim = new Dictionary(); Roles = new List(); } /// /// 用户身份信息 /// public List Claims { get; set; } /// /// 用户身份信息 /// public Dictionary Claim { get; set; } /// /// 用户角色信息 /// public List Roles { get; set; } /// /// 令牌类型 /// public string Scope { get; set; } } }