mirror of
https://github.com/Govor-team/Govor.git
synced 2026-07-21 19:54:55 +00:00
17 lines
599 B
C#
17 lines
599 B
C#
using Govor.Core.Models;
|
|
using Govor.Core.Models.Messages;
|
|
|
|
namespace Govor.Contracts.Responses.SignalR;
|
|
|
|
public class UserMessageResponse
|
|
{
|
|
public Guid MessageId { get; set; }
|
|
public Guid SenderId { get; set; }
|
|
public Guid RecipientId { get; set; }
|
|
public RecipientType RecipientType{get; set; }
|
|
public string EncryptedContent { get; set; } = string.Empty;
|
|
public Guid? ReplyToMessageId { get; set; }
|
|
public DateTime SentAt { get; set; }
|
|
public bool IsEdited { get; set; } = false;
|
|
public List<MediaFile> MediaAttachments { get; set; } = new List<MediaFile>();
|
|
} |