galaeth-draft/Galaeth.Services/Interfaces/IIdentityProvider.cs
2024-11-17 09:31:01 +00:00

14 lines
339 B
C#

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();
}