using System; using System.Collections.Generic; using System.Text; namespace $safeprojectname$.UI { /// /// A generealization of an item with a Description and Title. /// Any implmentation of IItem can be rendered using the ItemListView and ItemDescriptionView types. /// public interface IItem { string Description { get; } string Title { get; } } }