galaeth-draft/Galaeth.Services/Interfaces/IIdentityProvider.cs

14 lines
339 B
C#
Raw Normal View History

2024-11-17 10:31:01 +01:00
namespace Galaeth.Services.Interfaces;
/// <summary>
/// Identify who the requesting user is.
/// </summary>
public interface IIdentityProvider
{
/// <summary>
/// Get the user id of the requester.
/// </summary>
/// <returns>String representing the user id, or null if none.</returns>
string GetRequestingUserId();
}