2023-12-20 10:37:44 +03:30
|
|
|
|
namespace NetinaShop.Domain.Dtos.LargDtos;
|
|
|
|
|
|
|
|
|
|
|
|
public class ProductLDto : BaseDto<ProductLDto,Product>
|
|
|
|
|
|
{
|
|
|
|
|
|
public string PersianName { get; set; } = string.Empty;
|
|
|
|
|
|
public string EnglishName { get; set; } = string.Empty;
|
|
|
|
|
|
public string Summery { get; set; } = string.Empty;
|
|
|
|
|
|
public string ExpertCheck { get; set; } = string.Empty;
|
|
|
|
|
|
public string Tags { get; set; } = string.Empty;
|
|
|
|
|
|
public string Warranty { get; set; } = string.Empty;
|
2024-01-30 02:33:24 +03:30
|
|
|
|
public bool BeDisplayed { get; set; }
|
|
|
|
|
|
public bool HasExpressDelivery { get; set; }
|
|
|
|
|
|
public int MaxOrderCount { get; set; }
|
|
|
|
|
|
public double Cost { get; set; }
|
|
|
|
|
|
public double PackingCost { get; set; }
|
2023-12-20 10:37:44 +03:30
|
|
|
|
public Guid BrandId { get; set; }
|
2024-01-30 02:33:24 +03:30
|
|
|
|
public string BrandName { get; set; } = string.Empty;
|
|
|
|
|
|
public Guid CategoryId { get; set; }
|
|
|
|
|
|
public string CategoryName { get; set; } = string.Empty;
|
2024-02-03 10:34:48 +03:30
|
|
|
|
public bool IsSpecialOffer { get; set; }
|
2023-12-20 10:37:44 +03:30
|
|
|
|
|
|
|
|
|
|
public List<SpecificationSDto> Specifications { get; set; } = new();
|
|
|
|
|
|
public List<ReviewSDto> Reviews { get; set; } = new();
|
2024-01-13 13:05:37 +03:30
|
|
|
|
public List<ProductCategorySDto> Categories { get; set; } = new();
|
2023-12-20 10:37:44 +03:30
|
|
|
|
public List<StorageFileSDto> Files { get; set; } = new();
|
2024-02-03 10:34:48 +03:30
|
|
|
|
|
|
|
|
|
|
public DiscountSDto? SpecialOffer { get; set; }
|
2023-12-20 10:37:44 +03:30
|
|
|
|
}
|