步步为盈
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

77 lines
1.3 KiB

using System;
using System.Xml.Serialization;
using System.Collections.Generic;
using Newtonsoft.Json;
using Jd.Api.Domain;
namespace Jd.Api.Domain
{
[Serializable]
public class Category:JdObject{
[JsonProperty("fid")]
public int
fid
{ get; set; }
[JsonProperty("aliasName")]
public string
aliasName
{ get; set; }
[JsonProperty("featureMap")]
public Dictionary<string, object>
featureMap
{ get; set; }
[JsonProperty("notes")]
public string
notes
{ get; set; }
[JsonProperty("created")]
public DateTime
created
{ get; set; }
[JsonProperty("features")]
public string
features
{ get; set; }
[JsonProperty("name")]
public string
name
{ get; set; }
[JsonProperty("indexId")]
public int
indexId
{ get; set; }
[JsonProperty("logo")]
public string
logo
{ get; set; }
[JsonProperty("modified")]
public DateTime
modified
{ get; set; }
[JsonProperty("id")]
public int
id
{ get; set; }
[JsonProperty("lev")]
public int
lev
{ get; set; }
[JsonProperty("status")]
public int
status
{ get; set; }
}
}