yavsc/src/Server/Constants.cs
Paul Schneider 45514010f2 REORG
2026-02-14 16:54:27 +00:00

17 lines
513 B
C#

namespace Yavsc.Server
{
public static class ServerConstants
{
public const string ApplicationName = "Yavsc";
public const string CompanyInfoUrl = " https://societeinfo.com/app/rest/api/v1/company/json?registration_number={0}&key={1}";
private static readonly string[] GoogleScopes = { "openid", "profile", "email" };
public static readonly string[] GoogleCalendarScopes =
{ "openid", "profile", "email", "https://www.googleapis.com/auth/calendar" };
}
}