Api/NetinaShop.Domain/Dtos/SmallDtos/ShippingSDto.cs

11 lines
413 B
C#

namespace NetinaShop.Domain.Dtos.SmallDtos;
public class ShippingSDto : BaseDto<ShippingSDto,Shipping>
{
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; }
}