步步为盈
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.

72 lines
1.2 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 ModelTypeInfo:JdObject{
[JsonProperty("updater")]
public string
updater
{ get; set; }
[JsonProperty("id")]
public string
id
{ get; set; }
[JsonProperty("serveTypeName")]
public string
serveTypeName
{ get; set; }
[JsonProperty("updated")]
public DateTime
updated
{ get; set; }
[JsonProperty("created")]
public DateTime
created
{ get; set; }
[JsonProperty("name")]
public string
name
{ get; set; }
[JsonProperty("serveType")]
public int
serveType
{ get; set; }
[JsonProperty("propList")]
public List<string>
propList
{ get; set; }
[JsonProperty("disable")]
public bool
disable
{ get; set; }
[JsonProperty("used")]
public bool
used
{ get; set; }
[JsonProperty("allowCancel")]
public bool
allowCancel
{ get; set; }
[JsonProperty("creator")]
public string
creator
{ get; set; }
}
}