src/FingersDance.Control.Menu/Item.cs
author cavaliet
Mon, 26 Oct 2009 16:03:34 +0100
changeset 175 1d4b6d6474d5
parent 64 91b5a333614d
permissions -rw-r--r--
Visual change for the annotations to be as close as possible to the cursor's timeline.

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