14 lines
339 B
C#
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();
|
||
|
}
|