Files
Govor/Govor.Application/Interfaces/UserSession/IUserSessionRevoker.cs
T
Artemy 15f9370dbe Created SessionController and UserSessionReader
+ tests for UserSessionReader
2025-07-24 17:03:51 +07:00

9 lines
201 B
C#

namespace Govor.Application.Interfaces.UserSession;
public interface IUserSessionRevoker
{
Task CloseSessionByIdAsync(Guid sessionId, Guid userId);
Task CloseAllSessionsAsync(Guid userId);
}