54
|
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 Item |
|
10 |
{ |
|
11 |
public List<Item> Items = new List<Item>(); |
|
12 |
public string Name = ""; |
|
13 |
public string Action = ""; |
|
14 |
} |
|
15 |
} |