mirror of
https://github.com/soarqin/DSP_Mods.git
synced 2026-08-05 11:10:12 +08:00
16 lines
323 B
C#
16 lines
323 B
C#
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;
|
|
}
|
|
}
|