Core.Thalos.BuildingBlocks/Core.Thalos.BuildingBlocks/Contracts/IGoogleAuthHelper.cs
2025-07-25 23:44:07 -06:00

12 lines
231 B
C#

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