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; }
|
|
|
|
|
public string ClientId { get; set; }
|
|
|
|
|
public string ClientSecret { get; set; }
|
|
|
|
|
public string[] Scopes { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|