ChatGroup work

This commit is contained in:
Artemy
2025-07-04 12:43:12 +07:00
parent d170c6270f
commit fab3d6b67b
8 changed files with 65 additions and 21 deletions
@@ -0,0 +1,12 @@
using Govor.Contracts.Requests.SignalR;
namespace Govor.Contracts.Responses.SignalR;
public record UserMessageResponse
{
public Guid Id { get; init; }
public Guid SenderId { get; init; }
public string EncryptedContent { get; init; } = string.Empty;
public Guid? ReplyToMessageId { get; set; }
public List<MediaReference> MediaReferences { get; init; } = new List<MediaReference>();
}