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; } } }