diff -r 09d0bc6970b5 -r c724ac229181 src/FingersDance.Control.Menu/Item.cs --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/FingersDance.Control.Menu/Item.cs Mon Sep 14 23:49:47 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 Items = new List(); + public string Name = ""; + public string Action = ""; + } +}