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

15 lines
527 B
C#

using Netina.Common.Models.Mapper;
using Netina.Domain.Entities.Warehouses;
namespace Netina.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; }
public int WorkingDays { get; set; }
}