using Govor.Domain.Common; namespace Govor.Application.Users.UserSessions; public interface IUserSessionRevoker { Task CloseSessionByIdAsync(Guid sessionId, Guid userId); Task CloseAllSessionsAsync(Guid userId); }