12 lines
306 B
C#
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;
|
|
}
|
|
} |