namespace Galaeth.Services.Interfaces; /// /// Identify who the requesting user is. /// public interface IIdentityProvider { /// /// Get the user id of the requester. /// /// String representing the user id, or null if none. string GetRequestingUserId(); }