Files
Govor/Govor.Contracts/Responses/SignalR/MessageEditedResponse.cs
T

14 lines
436 B
C#

using Govor.Core.Models; // For RecipientType
namespace Govor.Contracts.Responses.SignalR;
public class MessageEditedResponse
{
public Guid MessageId { get; set; }
public string NewEncryptedContent { get; set; } = string.Empty;
public DateTime EditedAt { get; set; }
public Guid SenderId { get; set; } // Original Sender
public Guid RecipientId { get; set; }
public RecipientType RecipientType { get; set; }
}