namespace Umbraco.Cms.Core.Security;
///
/// An IUserStore interface part to implement if the store supports validating user session Ids
///
/// The user type
public interface IUserSessionStore
where TUser : class
{
///
/// Validates a user's session is still valid
///
Task ValidateSessionIdAsync(string? userId, string? sessionId);
}