using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Neo.Afx.Models { /// /// Base model for all consoles /// public class ConsoleModel { /// /// The title to display in the browser bar /// public string BrowserTitle { get; set; } } }