mirror of
https://github.com/Govor-team/Govor.git
synced 2026-07-21 11:44:56 +00:00
12 lines
326 B
C#
12 lines
326 B
C#
using Govor.Core.Models; // For RecipientType
|
|
|
|
namespace Govor.Contracts.Responses.SignalR;
|
|
|
|
public class MessageRemovedResponse
|
|
{
|
|
public Guid MessageId { get; set; }
|
|
public Guid SenderId { get; set; } // Original Sender
|
|
public Guid RecipientId { get; set; }
|
|
public RecipientType RecipientType { get; set; }
|
|
}
|