Files
Govor/Govor.Application/Interfaces/IUserPrivateChatsCreator.cs
T
2026-03-01 16:48:06 +07:00

8 lines
175 B
C#

using Govor.Core.Models;
namespace Govor.Application.Interfaces;
public interface IUserPrivateChatsCreator
{
Task<PrivateChat> CreateAsync(Guid userIdA, Guid userIdB);
}