1
using System;
2
using System.Collections.Generic;
3
using System.Linq;
4
using System.Text;
5
6
namespace FingersDance.Control.Menu
7
{
8
[Serializable]
9
public class Menu
10
11
public List<Item> Items = new List<Item>();
12
}
13