Files
Govor/Govor.API/Hubs/Infrastructure/IChatNotificationService.cs
2026-02-08 22:30:29 +07:00

10 lines
325 B
C#

using Govor.Contracts.Responses.SignalR;
namespace Govor.API.Hubs.Infrastructure;
public interface IChatNotificationService
{
Task NotifyMessageSentAsync(UserMessageResponse message);
Task NotifyMessageRemovedAsync(MessageRemovedResponse response);
Task NotifyMessageEditedAsync(MessageEditResponse response);
}