Added basic info to get in game for like...August 2016 ;-; It's not much but it's a start
10 lines
328 B
C#
10 lines
328 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;
|
|
}
|
|
} |