rework console client

This commit is contained in:
Artemy
2025-07-11 15:52:10 +07:00
parent 2ddc7ae699
commit 9d06984e8c
19 changed files with 312 additions and 67 deletions
@@ -0,0 +1,11 @@
using Govor.Core.Models;
namespace Govor.Contracts.Responses.SignalR;
public class MessageRemovedResponse
{
public Guid MessageId { get; set; }
public Guid SenderId { get; set; }
public Guid RecipientId { get; set; }
public RecipientType RecipientType { get; set; }
}