Files
Core.Thalos.BuildingBlocks/Core.Thalos.BuildingBlocks/Contracts/IGoogleAuthHelper.cs

12 lines
231 B
C#

using Google.Apis.Auth.OAuth2;
namespace Core.Thalos.BuildingBlocks
{
public interface IGoogleAuthHelper
{
string[] GetScopes();
string ScopeToString();
ClientSecrets GetClientSecrets();
}
}