Extensions/BinaryDad.Extensions/Annotations/DataRowPopulateAttribute.cs
2020-09-04 21:19:24 -04:00

10 lines
293 B
C#

using System;
namespace BinaryDad.Extensions
{
/// <summary>
/// Allows for a complex property to be populated via ToType().
/// </summary>
[AttributeUsage(AttributeTargets.Property, AllowMultiple = false)]
public sealed class DataRowPopulateAttribute : Attribute { }
}