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