Files
0A-KFCommonUtilityLib/Scripts/Attributes/TypeTargetExtensionAttribute.cs
2025-06-04 16:13:32 +09:30

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;
}
}
}