More changes...

This commit is contained in:
2026-02-27 19:30:49 -08:00
parent 20fdf60665
commit b64e257b9a
36 changed files with 553 additions and 63 deletions

View File

@@ -0,0 +1,11 @@
using System.Text.Json.Serialization;
namespace RecRoomArchive.Models.RRA
{
public class ServerPreferences
{
[JsonPropertyName(name: "CompletedSetup")] public bool CompletedSetup { get; set; } = false;
[JsonPropertyName(name: "OverrideNamedImages")] public bool OverrideNamedImages { get; set; } = false;
[JsonPropertyName(name: "EnableWebRequests")] public bool EnableWebRequests { get; set; } = true;
}
}