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

23
Models/WorkerConfig.cs Normal file
View File

@@ -0,0 +1,23 @@
using System.Text.Json.Serialization;
namespace UnifiedFarmLauncher.Models
{
public class WorkerConfig
{
[JsonPropertyName("id")]
public int Id { get; set; }
[JsonPropertyName("name")]
public string Name { get; set; } = string.Empty;
[JsonPropertyName("enabled")]
public bool Enabled { get; set; } = true;
[JsonPropertyName("ssh")]
public SshConfig Ssh { get; set; } = new();
[JsonPropertyName("workerTypes")]
public WorkerTypeConfig WorkerTypes { get; set; } = new();
}
}