src/FingersDance.Control.Menu/Menu.cs
author ymh
Thu, 24 Sep 2009 10:27:13 +0200
branchsyncsource
changeset 98 d20bbc845cb0
parent 54 c724ac229181
permissions -rw-r--r--
make progress on syncsource

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