Added basic info to get in game for like...August 2016 ;-; It's not much but it's a start
16 lines
951 B
C#
16 lines
951 B
C#
using System.Text.Json.Serialization;
|
|
using System.Xml.Linq;
|
|
|
|
namespace RecRoomArchive.Models.API.Config
|
|
{
|
|
public class RecRoomConfig
|
|
{
|
|
[JsonPropertyName(name: "MessageOfTheDay")] public string MessageOfTheDay { get; set; } = string.Empty;
|
|
[JsonPropertyName(name: "CdnBaseUri")] public string CdnBaseUri { get; set; } = string.Empty;
|
|
[JsonPropertyName(name: "MatchmakingParams")] public required MatchmakingParams MatchmakingParams { get; set; }
|
|
[JsonPropertyName(name: "LevelProgressionMaps")] public required List<LevelProgressionMap> LevelProgressionMaps { get; set; }
|
|
[JsonPropertyName(name: "DailyObjectives")] public required DailyObjective[][] DailyObjectives { get; set; }
|
|
[JsonPropertyName(name: "PhotonConfig")] public required PhotonConfig PhotonConfig { get; set; }
|
|
[JsonPropertyName(name: "ConfigTable")] public required List<GameConfig> ConfigTable { get; set; }
|
|
}
|
|
} |