using System; using Volo.Abp.Application.Dtos; namespace Sanhe.Abp.Identity.Dto { public class IdentityClaimDto : EntityDto { public string ClaimType { get; set; } public string ClaimValue { get; set; } } }