AuthSettings.cs 339 B

12345678910
  1. namespace WebTemplate.ServerAspects.Auth;
  2. public class AuthSettings
  3. {
  4. public const string SectionName = "Auth";
  5. public string Authority { get; set; } = String.Empty;
  6. public string Audience { get; set; } = String.Empty;
  7. public IDictionary<string, string[]> PolicyClaims { get; set; } = new Dictionary<string, string[]>();
  8. }