mirror of
https://git.recroomarchive.org/RecRoomArchive/RRAC.git
synced 2026-09-08 06:31:25 -07:00
11 lines
468 B
C#
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;
|
|
}
|
|
} |