namespace Ds.Module.AppStartup { /// /// /// [AttributeUsage(AttributeTargets.Class)] public class DsStartupAttribute : Attribute { public int Order { get; set; } public DsStartupAttribute(int order) { Order = order; } } }