Singularity/Assets/Scripts/SettingsJSON.cs

12 lines
342 B
C#
Raw Normal View History

2024-05-06 14:45:45 -04:00
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
}
}