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