| author | ymh |
| Wed, 16 Sep 2009 09:07:27 +0200 | |
| changeset 68 | 5f547156bda6 |
| parent 64 | 91b5a333614d |
| permissions | -rw-r--r-- |
| 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 = ""; |
|
| 64 | 14 |
public string Ressource = ""; |
| 54 | 15 |
} |
16 |
} |