namespace Brizco.Domain.CommandQueries.Commands; public sealed record CreateSectionCommand(string Title, string Description) : IRequest; public sealed record UpdateSectionCommand(Guid Id, string Title, string Description) : IRequest; public sealed record DeleteSectionCommand(Guid Id) : IRequest;