changeset 56 | 0662bd606c28 |
parent 54 | c724ac229181 |
child 64 | 91b5a333614d |
55:1ec0ef228158 | 56:0662bd606c28 |
---|---|
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 } |