src/FingersDance.Control.Menu/Menu.cs
author cavaliet
Wed, 21 Oct 2009 16:28:49 +0200
changeset 166 33c2e634df13
parent 54 c724ac229181
permissions -rw-r--r--
update drag and drop for dragged annotation to be well displayed and avoid DnD problems

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>();
    }
}