using Newtonsoft.Json; public class Settings { [JsonProperty("appSettings")] public AppSettings Setting { get; set; } public class AppSettings { [JsonProperty("downloadsFolder")] public string DownloadsFolder { get; set; } [JsonProperty("modListOrder")] public int? ModListOrder { get; set; } // 0: Alphabetical; 1: Numberical } }