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