namespace NetinaShop.Domain.CommandQueries.Commands; public sealed record CreateBrandCommand(string Name,string Description , bool HasSpecialPage , string PageUrl, List Files) : IRequest; public sealed record UpdateBrandCommand(Guid Id, string Name, string Description, bool HasSpecialPage, string PageUrl, List Files) : IRequest; public sealed record DeleteBrandCommand(Guid Id) : IRequest;