First step of data binding where we can add an annotation by clicking on the 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>();
}
}