using System.Reflection; using System.ComponentModel; namespace SuperStarTrek.Commands; internal static class CommandExtensions { internal static string GetDescription(this Command command) => typeof(Command) .GetField(command.ToString()) .GetCustomAttribute() .Description; }