mirror of
https://git.recroomarchive.org/RecRoomArchive/RRAC.git
synced 2026-09-08 14:41:25 -07:00
More changes...
This commit is contained in:
@@ -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