14 lines
475 B
C#
14 lines
475 B
C#
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; }
|
|
} |