using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace UniversalEditor.ObjectModels.Setup.ArkAngles { public class AutoStartCommand { private char _key = '\0'; private AutoStartCommand(char _key) { } private static AutoStartCommand m_Install = new AutoStartCommand('I'); /// /// Installs the application. /// public static AutoStartCommand Install { get { return m_Install; } } private static AutoStartCommand m_Catalog = new AutoStartCommand('C'); /// /// Displays the product catalog. /// public static AutoStartCommand Catalog { get { return m_Catalog; } } private static AutoStartCommand m_Exit = new AutoStartCommand('X'); /// /// Exits the Setup program. /// public static AutoStartCommand Exit { get { return m_Exit; } } private static AutoStartCommand m_Restart = new AutoStartCommand('S'); /// /// Restarts the operating system (actually just logs you off and back on again under Win2k). /// public static AutoStartCommand Restart { get { return m_Restart; } } public class AutoStartCommandCollection : System.Collections.ObjectModel.Collection { } } }