2020-03-24 08:47:08 +00:00
|
|
|
|
namespace FarmmapsApi.Models
|
|
|
|
|
{
|
|
|
|
|
public class Configuration
|
|
|
|
|
{
|
|
|
|
|
public string Authority { get; set; }
|
|
|
|
|
public string Endpoint { get; set; }
|
2020-03-25 16:31:42 +00:00
|
|
|
|
public string BasePath { get; set; }
|
2020-03-24 08:47:08 +00:00
|
|
|
|
public string DiscoveryEndpointUrl { get; set; }
|
|
|
|
|
public string RedirectUri { get; set; }
|
2022-02-23 09:33:59 +00:00
|
|
|
|
public string GrantClientId { get; set; }
|
2020-03-24 08:47:08 +00:00
|
|
|
|
public string ClientId { get; set; }
|
|
|
|
|
public string ClientSecret { get; set; }
|
2022-02-23 09:33:59 +00:00
|
|
|
|
public string Username { get; set; }
|
|
|
|
|
public string Password { get; set; }
|
2020-03-24 08:47:08 +00:00
|
|
|
|
public string[] Scopes { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|