13 lines
346 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
}
|