namespace NetinaShop.Domain.Dtos.SmallDtos; public class ShippingSDto : BaseDto { public string Name { get; set; } = string.Empty; public string WarehouseName { get; set; } = string.Empty; public bool IsExpressShipping { get; set; } public bool IsShipBySeller { get; set; } public bool IsOriginalWarehouse { get; set; } public double DeliveryCost { get; set; } }