14 lines
347 B
C#
14 lines
347 B
C#
namespace DiunaBI.UI.Shared.Services;
|
|
|
|
/// <summary>
|
|
/// Platform-agnostic interface for Google authentication
|
|
/// </summary>
|
|
public interface IGoogleAuthService
|
|
{
|
|
/// <summary>
|
|
/// Initiate Google Sign-In flow
|
|
/// </summary>
|
|
/// <returns>True if authentication was initiated successfully</returns>
|
|
Task<bool> SignInAsync();
|
|
}
|