using System.Text.Json.Serialization; namespace goods.Models.Coupang.Product { public class Response { [JsonPropertyName("rCode")] public string RCode { get; set; } [JsonPropertyName("rMessage")] public string RMessage { get; set; } [JsonPropertyName("data")] public List Data { get; set; } } public class Data { [JsonPropertyName("categoryName")] public string CategoryName { get; set; } [JsonPropertyName("keyword")] public string Keyword { get; set; } [JsonPropertyName("rank")] public int Rank { get; set; } [JsonPropertyName("isRocket")] public bool IsRocket { get; set; } [JsonPropertyName("isFreeShipping")] public bool IsFreeShipping { get; set; } [JsonPropertyName("productId")] public long ProductId { get; set; } [JsonPropertyName("productImage")] public string ProductImage { get; set; } [JsonPropertyName("productName")] public string ProductName { get; set; } [JsonPropertyName("productPrice")] public int ProductPrice { get; set; } [JsonPropertyName("productUrl")] public string ProductUrl { get; set; } } }