changeset 56 | 0662bd606c28 |
parent 54 | c724ac229181 |
child 64 | 91b5a333614d |
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/FingersDance.Control.Menu/Item.cs Tue Sep 15 14:13:37 2009 +0200 @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +namespace FingersDance.Control.Menu +{ + [Serializable] + public class Item + { + public List<Item> Items = new List<Item>(); + public string Name = ""; + public string Action = ""; + } +}