More changes...
This commit is contained in:
11
RecRoomArchive.Models/RRA/ServerPreferences.cs
Normal file
11
RecRoomArchive.Models/RRA/ServerPreferences.cs
Normal 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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user