using System.Collections.Generic; using Newtonsoft.Json; namespace DR.FV2016.Web.Models { public class BannerConfig { [JsonProperty(PropertyName = "video")] public Video Video { get; set; } [JsonProperty(PropertyName = "config")] public Config Config { get; set; } } public class Video { public string Description { get; set; } public List StreamingChannels { get; set; } public string SelectedStreamingChannel { get; set; } } public class Config { [JsonProperty(PropertyName = "enableVideo")] public bool EnableVideo { get; set; } } }