mirror of
https://github.com/Govor-team/Govor.git
synced 2026-07-21 19:54:55 +00:00
ChatGroup work
This commit is contained in:
@@ -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>();
|
||||
}
|
||||
Reference in New Issue
Block a user