5 lines
288 B
C#
5 lines
288 B
C#
namespace Brizco.Domain.CommandQueries.Commands;
|
|
|
|
public record CreateNewsFeedCommand(string Title,string Content,bool IsPin) : IRequest<Guid>;
|
|
public record DeleteNewsFeedCommand(Guid Id) : IRequest<bool>;
|
|
public record ChangeNewsFeedPinCommand(Guid Id , bool IsPin) : IRequest<bool>; |