2025-12-17 15:34:34 -07:00
|
|
|
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"
|
|
|
|
|
};
|
2025-12-17 16:19:08 -07:00
|
|
|
|
|
|
|
|
[JsonPropertyName("sheepItUsername")]
|
|
|
|
|
public string SheepItUsername { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
[JsonPropertyName("sheepItRenderKey")]
|
|
|
|
|
public string SheepItRenderKey { get; set; } = string.Empty;
|
2025-12-17 15:34:34 -07:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|