src/FingersDance.Control.Menu/Menu.cs
author cavaliet
Tue, 29 Sep 2009 11:08:37 +0200
changeset 125 fab494cd9da7
parent 54 c724ac229181
permissions -rw-r--r--
Now to define an annotation we define its begin then its end.

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