Files
forkmessager/backend/src/Contracts/Messaging/Application/Abstractions/IChatAccessProvider.cs
T

12 lines
294 B
C#

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