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

12 lines
306 B
C#

namespace e_suite.API.Common;
[AttributeUsage(AttributeTargets.Property)]
public sealed class PatchMapAttribute : Attribute
{
public string TargetPropertyName { get; }
public PatchMapAttribute(string targetPropertyName)
{
TargetPropertyName = targetPropertyName;
}
}