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) { } } }