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

9 lines
251 B
C#

using Govor.Core.Models;
namespace Govor.Application.Interfaces;
public interface IPrivateChatGroupManager
{
Task AddUsersToPrivateChatGroupAsync(PrivateChat privateChat);
Task RemoveUsersFromPrivateChatGroupAsync(PrivateChat privateChat);
}