namespace NetinaShop.Domain.CommandQueries.Commands; public sealed record CreateShippingCommand ( string Name, string WarehouseName, bool IsExpressShipping, bool IsShipBySeller , bool IsOriginalWarehouse, double DeliveryCost) : IRequest; public sealed record UpdateShippingCommand( Guid Id, string Name, string WarehouseName, bool IsExpressShipping, bool IsShipBySeller, bool IsOriginalWarehouse, double DeliveryCost) : IRequest; public sealed record DeleteShippingCommand( Guid Id) : IRequest;