Files
Wino-Mail/Wino.Messages/Server/MailRemovedMessage.cs

8 lines
184 B
C#
Raw Normal View History

using Wino.Core.Domain.Entities;
using Wino.Core.Domain.Interfaces;
namespace Wino.Messages.Server
{
public record MailRemovedMessage(MailCopy RemovedMail) : IServerMessage;
}