begin application build overhaul
This commit is contained in:
15
Models/ConfigRoot.cs
Normal file
15
Models/ConfigRoot.cs
Normal 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();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user