2024-04-22 13:33:39 +03:30
|
|
|
|
namespace Netina.Domain.Dtos.SmallDtos;
|
2023-12-20 10:37:44 +03:30
|
|
|
|
|
|
|
|
|
|
public class ShippingSDto : BaseDto<ShippingSDto,Shipping>
|
|
|
|
|
|
{
|
2024-02-09 21:43:14 +03:30
|
|
|
|
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; }
|
2024-02-12 22:01:15 +03:30
|
|
|
|
public int WorkingDays { get; set; }
|
2023-12-20 10:37:44 +03:30
|
|
|
|
}
|