using System; namespace Comal.Classes { public interface IMeetingItem { String Title { get; set; } String Notes { get; set; } } }