yavsc/Yavsc/Settings/GoogleAuthSettings.cs

11 lines
256 B
C#
Raw Normal View History

2016-05-17 18:22:18 +02:00
namespace Yavsc
{
public class GoogleAuthSettings
{
public string ApiKey { get; set; }
public string ClientSecret { get; set; }
public string ClientId { get; set; }
public string BrowserApiKey { get; set; }
}
}