17 lines
606 B
C#
17 lines
606 B
C#
namespace FarmmapsApi.Models
|
|
{
|
|
public class Configuration
|
|
{
|
|
public string Authority { get; set; }
|
|
public string Endpoint { get; set; }
|
|
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; }
|
|
}
|
|
} |