yavsc/src/Yavsc.Server/Settings/GoogleAuthSettings.cs
Paul Schneider 578e33bf86 Nav fixed
2024-11-06 20:56:02 +00:00

17 lines
347 B
C#

namespace Yavsc
{
public class GoogleAuthSettings
{
public string ClientId { get; set; }
public string ClientSecret { get; set; }
public string ApiKey { get; set; }
public string BrowserApiKey { get; set; }
public string GoogleServiceAccountJson { get; set; }
public string GoogleWebClientJson { get; set; }
}
}