Files
RRAC/RecRoomArchive.Models/API/Config/PhotonConfig.cs
2026-02-27 19:30:49 -08:00

11 lines
468 B
C#

using System.Text.Json.Serialization;
namespace RecRoomArchive.Models.API.Config
{
public class PhotonConfig
{
[JsonPropertyName(name: "CloudRegion")] public string CloudRegion { get; set; } = "us";
[JsonPropertyName(name: "CrcCheckEnabled")] public bool CrcCheckEnabled { get; set; } = true;
[JsonPropertyName(name: "EnableServerTracingAfterDisconnect")] public bool EnableServerTracingAfterDisconnect { get; set; } = true;
}
}