using System.Collections.Generic; using System.Text.Json.Serialization; namespace UnifiedFarmLauncher.Models { public class GlobalSettings { [JsonPropertyName("sheepitJarUrls")] public List SheepItJarUrls { get; set; } = new() { "https://www.sheepit-renderfarm.com/media/applet/client-latest.php", "https://www.sheepit-renderfarm.com/media/applet/client-latest.jar" }; } }