mirror of
https://github.com/Govor-team/Govor.git
synced 2026-07-21 11:44:56 +00:00
9 lines
309 B
C#
9 lines
309 B
C#
namespace Govor.Contracts.Requests.SignalR;
|
|
|
|
public record GroupMessageRequest()
|
|
{
|
|
public Guid GroupId { get; init; }
|
|
public string EncryptedContent { get; init; } = string.Empty;
|
|
public Guid? ReplyToMessageId { get; set; }
|
|
public List<MediaReference> MediaAttachments { get; set; } = new();
|
|
} |