15 lines
393 B
C#
15 lines
393 B
C#
using System;
|
|
|
|
namespace KFCommonUtilityLib.Scripts.Attributes
|
|
{
|
|
[AttributeUsage(System.AttributeTargets.Class, Inherited = false, AllowMultiple = false)]
|
|
public class TypeTargetExtensionAttribute : Attribute
|
|
{
|
|
public Type ModuleType { get; }
|
|
public TypeTargetExtensionAttribute(Type moduleType)
|
|
{
|
|
ModuleType = moduleType;
|
|
}
|
|
}
|
|
}
|