using System.Collections.Generic; using System.Text.Json.Serialization; namespace UnifiedFarmLauncher.Models { public class ConfigRoot { [JsonPropertyName("workers")] public List Workers { get; set; } = new(); [JsonPropertyName("globalSettings")] public GlobalSettings GlobalSettings { get; set; } = new(); } }