forked from FarmMaps/FarmMapsApiClient
14 lines
465 B
C#
14 lines
465 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 ClientId { get; set; }
|
|
public string ClientSecret { get; set; }
|
|
public string[] Scopes { get; set; }
|
|
}
|
|
} |