From 4628fafc79affbb4d5f493fe1b1b12e7089af75b Mon Sep 17 00:00:00 2001 From: Nathan Date: Wed, 17 Dec 2025 16:27:28 -0700 Subject: [PATCH] flam worker path also to global --- Models/GlobalSettings.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Models/GlobalSettings.cs b/Models/GlobalSettings.cs index 2e929bd..605e807 100644 --- a/Models/GlobalSettings.cs +++ b/Models/GlobalSettings.cs @@ -17,6 +17,9 @@ namespace UnifiedFarmLauncher.Models [JsonPropertyName("sheepItRenderKey")] public string SheepItRenderKey { get; set; } = string.Empty; + + [JsonPropertyName("flamencoWorkerPath")] + public string FlamencoWorkerPath { get; set; } = string.Empty; } }