4 lines
203 B
C#
4 lines
203 B
C#
|
|
namespace Brizco.Domain.CommandQueries.Commands;
|
|||
|
|
|
|||
|
|
public record CreateNotificationCommand(string Message,Guid UserId) : IRequest<Guid>;
|
|||
|
|
public record ReadNotificationCommand(Guid Id) : IRequest<bool>;
|