2024-04-22 13:33:39 +03:30
|
|
|
|
namespace Netina.Domain.Dtos.LargDtos;
|
2023-12-20 10:37:44 +03:30
|
|
|
|
|
|
|
|
|
|
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;
|
2024-04-22 13:33:39 +03:30
|
|
|
|
public string Slug { get; set; } = string.Empty;
|
2023-12-20 10:37:44 +03:30
|
|
|
|
public string Warranty { get; set; } = string.Empty;
|
2024-02-16 18:07:00 +03:30
|
|
|
|
public double CostWithDiscount { get; set; }
|
|
|
|
|
|
public double DiscountPercent { get; set; }
|
2024-01-30 02:33:24 +03:30
|
|
|
|
public bool BeDisplayed { get; set; }
|
2024-02-16 18:07:00 +03:30
|
|
|
|
public bool IsSpecial { get; set; }
|
|
|
|
|
|
public bool HasDiscount { get; set; }
|
2024-01-30 02:33:24 +03:30
|
|
|
|
public bool HasExpressDelivery { get; set; }
|
|
|
|
|
|
public double Cost { get; set; }
|
|
|
|
|
|
public double PackingCost { get; set; }
|
2024-02-09 21:43:14 +03:30
|
|
|
|
public int MaxOrderCount { get; set; }
|
2024-02-09 19:43:17 +03:30
|
|
|
|
public int Stock { 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-05-07 11:01:55 +03:30
|
|
|
|
public string MainImage { 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();
|
2024-09-24 00:34:53 +03:30
|
|
|
|
public List<CommentSDto> Reviews { 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; }
|
2024-09-11 19:59:27 +03:30
|
|
|
|
public Guid AuthorId { get; set; }
|
|
|
|
|
|
public string AuthorFullName { get; set; } = string.Empty;
|
2023-12-20 10:37:44 +03:30
|
|
|
|
}
|