mirror of
https://github.com/soarqin/DSP_Mods.git
synced 2026-08-05 09:30:13 +08:00
feat(UXAssist): public ModFeature lifecycle registry
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
using System;
|
||||
|
||||
namespace UXAssist.Common.ModFeatures;
|
||||
|
||||
[AttributeUsage(AttributeTargets.Class, Inherited = false)]
|
||||
public sealed class ModFeatureAttribute : Attribute
|
||||
{
|
||||
public string Name { get; }
|
||||
public int Order { get; set; }
|
||||
|
||||
public ModFeatureAttribute(string name = null)
|
||||
{
|
||||
Name = name;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user