using System; namespace HeuristicLab.CommandLineInterface.Core { public class CLIBaseAttribute : Attribute { /// /// Description which will be shown in the help box. /// public string Description { get; set; } = ""; } }