move SheepIt settings to global settings

This commit is contained in:
Nathan
2025-12-17 16:19:08 -07:00
parent 03b3ae58f4
commit 202ad49f48
11 changed files with 268 additions and 34 deletions

View File

@@ -11,6 +11,12 @@ namespace UnifiedFarmLauncher.Models
"https://www.sheepit-renderfarm.com/media/applet/client-latest.php",
"https://www.sheepit-renderfarm.com/media/applet/client-latest.jar"
};
[JsonPropertyName("sheepItUsername")]
public string SheepItUsername { get; set; } = string.Empty;
[JsonPropertyName("sheepItRenderKey")]
public string SheepItRenderKey { get; set; } = string.Empty;
}
}