mirror of
https://github.com/Govor-team/Govor.git
synced 2026-07-21 19:54:55 +00:00
12 lines
395 B
C#
12 lines
395 B
C#
using Govor.Core.Models.Messages;
|
|
|
|
namespace Govor.Contracts.Requests.SignalR;
|
|
|
|
public record MessageRequest
|
|
{
|
|
public Guid RecipientId { get; init; }
|
|
public RecipientType RecipientType { get; init; }
|
|
public string EncryptedContent { get; init; } = string.Empty;
|
|
public Guid? ReplyToMessageId { get; set; }
|
|
public List<MediaReference> MediaAttachments { get; set; } = new();
|
|
} |