using System.Collections.Generic; using System.Linq; namespace FlowerPower { public class GameConfigModel { public List dataList1; public Dictionary> game_conf = new Dictionary>(); } public class GameBoard { public int level; public string board; public string stacked; public int item_type; } }