begin application build overhaul

This commit is contained in:
Nathan
2025-12-17 15:34:34 -07:00
parent 5cc6060323
commit 610cdb62a8
23 changed files with 2379 additions and 0 deletions

15
Models/ConfigRoot.cs Normal file
View File

@@ -0,0 +1,15 @@
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();
}
}