src/FingersDance.Control.Menu/Item.cs
changeset 54 c724ac229181
child 64 91b5a333614d
equal deleted inserted replaced
53:09d0bc6970b5 54:c724ac229181
       
     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 }