namespace Netina.Domain.Dtos.ResponseDtos.Emalls; public class EmallsProductResponseDto { public string title { get; set; } = string.Empty; public string id { get; set; } = string.Empty; public int price { get; set; } public int? old_price { get; set; } public string category { get; set; } public string color { get; set; } public string guarantee { get; set; } public bool is_available { get; set; } public string url { get; set; } }