namespace Application.Abstractions.Chat { public interface IChatConnectionTracker { Task AddAsync(ConnectedUser user); Task RemoveAsync(string connectionId); Task> GetAllAsync(); Task ClearAllAsync(); } }