using System; using System.Collections.Generic; namespace NarKampen.Assets.Scripts.Objects { [Serializable] public class OnlineGames { public List<OnlineGame> onlineGamesList = new List<OnlineGame>(); } }