yavsc/src/Yavsc.Server/Settings/GoogleAuthSettings.cs

14 lines
260 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
{
2018-12-24 03:07:05 +00:00
public class GoogleAuthSettings
{
public string ApiKey { get; set; }
2017-06-14 12:28:08 +02:00
2018-12-24 03:07:05 +00:00
public string BrowserApiKey { get; set; }
public string GoogleServiceAccountJson { get; set; }
public string GoogleWebClientJson { get; set; }
}
2018-12-23 01:57:58 +00:00
}