namespace NetinaShop.Domain.Dtos.LargDtos; public class ProductLDto : BaseDto { 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; public Guid BrandId { get; set; } public string BrandNames { get; set; } = string.Empty; public List Specifications { get; set; } = new(); public List Reviews { get; set; } = new(); public List Categories { get; set; } = new(); public List Files { get; set; } = new(); }