Upload from upload_mods.ps1
This commit is contained in:
14
Scripts/Attributes/TypeTargetExtensionAttribute.cs
Normal file
14
Scripts/Attributes/TypeTargetExtensionAttribute.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user