using System; using System.Collections.Generic; using System.Threading; using System.Threading.Tasks; namespace Knot.Contracts.Messaging.Application.Abstractions; public interface IChatAccessProvider { Task> GetValidChatIdsForUserAsync(Guid userId, CancellationToken ct); }