Files
UFL/Models/ConfigRoot.cs

16 lines
372 B
C#
Raw Permalink Normal View History

2025-12-17 15:34:34 -07:00
using System.Collections.Generic;
using System.Text.Json.Serialization;
namespace UnifiedFarmLauncher.Models
{
public class ConfigRoot
{
[JsonPropertyName("workers")]
public List<WorkerConfig> Workers { get; set; } = new();
[JsonPropertyName("globalSettings")]
public GlobalSettings GlobalSettings { get; set; } = new();
}
}