src/FingersDance.Control.Menu/Menu.cs
author cavaliet
Mon, 26 Oct 2009 16:03:34 +0100
changeset 175 1d4b6d6474d5
parent 54 c724ac229181
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 Menu
    {
        public List<Item> Items = new List<Item>();
    }
}