yavsc/Yavsc.Server/Settings/GoogleAuthSettings.cs

26 lines
854 B
C#
Raw Normal View History

2016-05-17 18:22:18 +02:00
2017-06-14 12:28:08 +02:00
namespace Yavsc
2016-05-17 18:22:18 +02:00
{
public class GoogleAuthSettings
{
public string ApiKey { get; set; }
public string BrowserApiKey { get; set; }
2018-12-23 01:57:58 +00:00
public class Account
2017-06-14 12:28:08 +02:00
{
2018-12-23 01:57:58 +00:00
public string type { get; set; }
2017-06-14 12:28:08 +02:00
public string project_id { get; set; }
public string private_key_id { get; set; }
public string private_key { get; set; }
public string client_email { get; set; }
public string client_id { get; set; }
2018-12-23 01:57:58 +00:00
public string client_secret { get; set; }
2017-06-14 12:28:08 +02:00
public string auth_uri { get; set; }
public string token_uri { get; set; }
public string auth_provider_x509_cert_url { get; set; }
public string client_x509_cert_url { get; set; }
}
2018-12-23 01:57:58 +00:00
public Account ServiceAccount { get; set; }
2016-05-17 18:22:18 +02:00
}
2018-12-23 01:57:58 +00:00
}