AW-3569 Added posibility to login with username/password

This commit is contained in:
2022-02-23 10:33:59 +01:00
parent 2790beaa88
commit e07fb2de7a
5 changed files with 34 additions and 11 deletions

View File

@@ -7,8 +7,11 @@
public string BasePath { get; set; }
public string DiscoveryEndpointUrl { get; set; }
public string RedirectUri { get; set; }
public string GrantClientId { get; set; }
public string ClientId { get; set; }
public string ClientSecret { get; set; }
public string Username { get; set; }
public string Password { get; set; }
public string[] Scopes { get; set; }
}
}