Files
RRAC/RecRoomArchive.Models/RRA/ServerPreferences.cs
2026-02-27 19:30:49 -08:00

11 lines
446 B
C#

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;
}
}