Backend/e-suite.API.Common/e-suite.API.Common/PatchesAttribute.cs

12 lines
288 B
C#

namespace e_suite.API.Common;
[AttributeUsage(AttributeTargets.Class, AllowMultiple = false)]
public sealed class PatchesAttribute : Attribute
{
public Type TargetType { get; }
public PatchesAttribute(Type targetType)
{
TargetType = targetType;
}
}