Files
Govor/Govor.Application/Messages/Parameters/DeleteMessage.cs
T
Artemy 3ec61fa2c0 Stable server
was added removing messages
many fixes bugs and moving to result pattern from throwing exceptions
2026-08-22 19:28:42 +07:00

7 lines
150 B
C#

namespace Govor.Application.Messages.Parameters;
public record DeleteMessage(
Guid DeleterId,
Guid MessageId,
bool ForceRemove = false);