Files
forkmessager/backend/src/Contracts/Messaging/Application/Abstractions/IChatAccessProvider.cs
Халимов Рустам 9438cf1b35 Структура
2026-03-30 01:45:19 +03:00

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);
}