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

16
Models/GlobalSettings.cs Normal file
View File

@@ -0,0 +1,16 @@
using System.Collections.Generic;
using System.Text.Json.Serialization;
namespace UnifiedFarmLauncher.Models
{
public class GlobalSettings
{
[JsonPropertyName("sheepitJarUrls")]
public List<string> SheepItJarUrls { get; set; } = new()
{
"https://www.sheepit-renderfarm.com/media/applet/client-latest.php",
"https://www.sheepit-renderfarm.com/media/applet/client-latest.jar"
};
}
}