16 lines
372 B
C#
16 lines
372 B
C#
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();
|
|
}
|
|
}
|
|
|