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

48 lines
1.3 KiB

3 years ago
using System;
using System.Xml.Serialization;
using System.Collections.Generic;
using Newtonsoft.Json;
using Jd.Api.Domain;
namespace Jd.Api.Domain
{
[Serializable]
public class JOSVideoRelativeInfo:JdObject{
[JsonProperty("product_id")]
public long
productId
{ get; set; }
[JsonProperty("sku_id")]
public long
skuId
{ get; set; }
[JsonProperty("video_id")]
public long
videoId
{ get; set; }
[JsonProperty("agent_video_id")]
public long
agentVideoId
{ get; set; }
[JsonProperty("video_name")]
public string
videoName
{ get; set; }
[JsonProperty("video_type")]
public int
videoType
{ get; set; }
[JsonProperty("status")]
public int
status
{ get; set; }
}
}