Files
Govor/Govor.Application/Interfaces/IConnectionStore.cs
T
2026-03-01 16:48:06 +07:00

8 lines
250 B
C#

namespace Govor.Application.Interfaces;
public interface IConnectionStore
{
void AddConnection(Guid userId, string connectionId);
void RemoveConnection(Guid userId, string connectionId);
IEnumerable<string> GetConnections(Guid userId);
}