namespace NetinaShop.Domain.CommandQueries.Commands; public sealed record CreateProductCommand( string PersianName, string EnglishName, string Summery, string ExpertCheck, string Tags, string Warranty, Guid BrandId, string BrandNames , List Categories, List Specifications, List Files):IRequest; public sealed record UpdateProductCommand( Guid Id, string PersianName, string EnglishName, string Summery, string ExpertCheck, string Tags, string Warranty, Guid BrandId, string BrandNames, List Categories, List Specifications, List Files) : IRequest; public sealed record DeleteProductCommand(Guid Id) : IRequest;