12 lines
294 B
C#
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);
|
|
}
|