10 lines
293 B
C#
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 { }
|
|||
|
}
|