Files
Govor/Govor.Application/Interfaces/IUserPrivateChatsGetterService.cs
T
2026-02-08 22:30:29 +07:00

8 lines
179 B
C#

using Govor.Core.Models;
namespace Govor.Application.Interfaces;
public interface IUserPrivateChatsGetterService
{
Task<List<PrivateChat>> GetUserChatsAsync(Guid userId);
}