using System; using System.Xml.Serialization; using System.Collections.Generic; using Newtonsoft.Json; using Jd.Api.Domain; namespace Jd.Api.Domain { [Serializable] public class BookBigFieldInfo:JdObject{ [JsonProperty("comments")] public string comments { get; set; } [JsonProperty("image")] public string image { get; set; } [JsonProperty("content_desc")] public string contentDesc { get; set; } [JsonProperty("relatedProducts")] public string relatedProducts { get; set; } [JsonProperty("editer_desc")] public string editerDesc { get; set; } [JsonProperty("catalogue")] public string catalogue { get; set; } [JsonProperty("book_abstract")] public string bookAbstract { get; set; } [JsonProperty("authorDesc")] public string authorDesc { get; set; } [JsonProperty("introduction")] public string introduction { get; set; } [JsonProperty("productFeatures")] public string productFeatures { get; set; } } }