21 lines
424 B
C#
21 lines
424 B
C#
using System.Collections.Generic;
|
|
using System.Linq;
|
|
|
|
namespace FlowerPower
|
|
{
|
|
public class GameConfigModel
|
|
{
|
|
public List<GameBoard> dataList1;
|
|
|
|
public Dictionary<int, List<GameBoard>> game_conf = new Dictionary<int, List<GameBoard>>();
|
|
|
|
}
|
|
|
|
public class GameBoard
|
|
{
|
|
public int level;
|
|
public string board;
|
|
public string stacked;
|
|
public int item_type;
|
|
}
|
|
} |