14 lines
600 B
C#
14 lines
600 B
C#
|
|
namespace NetinaShop.Domain.Dtos.ScraperDtos.Response;
|
|||
|
|
|
|||
|
|
public class ScraperProductDto
|
|||
|
|
{
|
|||
|
|
public string PersianName { get; set; } = string.Empty;
|
|||
|
|
public string EnglishName { get; set; } = string.Empty;
|
|||
|
|
public string Summery { get; set; } = string.Empty;
|
|||
|
|
public double Cost { get; set; }
|
|||
|
|
public string MainImage { get; set; } = string.Empty;
|
|||
|
|
public string BrandName { get; set; } = string.Empty;
|
|||
|
|
public string CategoryName { get; set; } = string.Empty;
|
|||
|
|
public string ScraperId { get; set; } = string.Empty;
|
|||
|
|
public string ScraperUrl { get; set; } = string.Empty;
|
|||
|
|
}
|