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