using System.Collections.Generic; using SabreTools.Help; namespace RombaSharp.Features { internal class Shutdown : BaseFeature { public const string Value = "Shutdown"; public Shutdown() { Name = Value; Flags = new List() { "shutdown" }; Description = "Gracefully shuts down server."; _featureType = ParameterType.Flag; LongDescription = "Gracefully shuts down server saving all the cached data."; Features = new Dictionary(); // Common Features AddCommonFeatures(); } public override void ProcessFeatures(Dictionary features) { base.ProcessFeatures(features); logger.User("This feature is not yet implemented: shutdown"); } } }