using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace UniversalEditor.UserInterface { public class Perspective { public class PerspectiveCollection : System.Collections.ObjectModel.Collection { } private string mvarTitle = String.Empty; public string Title { get { return mvarTitle; } set { mvarTitle = value; } } private string mvarDescription = String.Empty; public string Description { get { return mvarDescription; } set { mvarDescription = value; } } private List mvarObjectModels = new List(); public List ObjectModels { get { return mvarObjectModels; } } } }