mirror of https://github.com/abpframework/abp.git
6 changed files with 24 additions and 13 deletions
@ -0,0 +1,14 @@ |
|||
using System.Collections.Generic; |
|||
|
|||
namespace Volo.Abp.IdentityServer |
|||
{ |
|||
public class AbpClaimsServiceOptions |
|||
{ |
|||
public List<string> RequestedClaims { get; } |
|||
|
|||
public AbpClaimsServiceOptions() |
|||
{ |
|||
RequestedClaims = new List<string>(); |
|||
} |
|||
} |
|||
} |
|||
Loading…
Reference in new issue