namespace Brizco.Domain.CommandQueries.Commands; public record CreateNewsFeedCommand(string Title,string Content,bool IsPin) : IRequest; public record DeleteNewsFeedCommand(Guid Id) : IRequest; public record ChangeNewsFeedPinCommand(Guid Id , bool IsPin) : IRequest;