begin application build overhaul
This commit is contained in:
16
Models/GlobalSettings.cs
Normal file
16
Models/GlobalSettings.cs
Normal 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"
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user