using System.Collections.Generic; public class GameInfo { public GameType TypeOfGame { get; set; } public List Games { get; set; } } public enum GameType { RPG, Shooter, Strategy }