using System.Collections.Generic; namespace WingsEmu.Game.Configurations.Miniland; public class MinigameConfiguration { public List Minigames { get; set; } = new() { new() }; public List ScoresHolders { get; set; } = new() { new() }; public GlobalMinigameConfiguration Configuration { get; set; } = new(); }