AutoMapProperty/AutoMapPropertyHelper/AutoMapPropertyAttribute.cs
honzapatCZ dae65b42e5 init
2023-03-14 20:46:34 +01:00

13 lines
346 B
C#

using System;
namespace AutoMapPropertyHelper
{
[AttributeUsage(AttributeTargets.Property, AllowMultiple = true, Inherited = true)]
public class AutoMapPropertyAttribute : System.Attribute
{
public AutoMapPropertyAttribute(string name, Type? typeName = null, bool generateConverter = true)
{
}
}
}