using System; namespace MotionFramework.Console { [AttributeUsage(AttributeTargets.Class)] public class ConsoleAttribute : Attribute { /// /// 标题名称 /// public string Title; /// /// 显示顺序 /// public int Order; public ConsoleAttribute(string title, int order) { Title = title; Order = order; } } }