src/FingersDance.Control.Menu/Item.cs
author ymh
Wed, 16 Sep 2009 08:34:32 +0200
changeset 67 70cca06f0a32
parent 54 c724ac229181
child 64 91b5a333614d
permissions -rw-r--r--
Some cleaning and setup test project fro sync source

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 = "";
    }
}