28 lines
549 B
C#
28 lines
549 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
namespace printsoftware.infrastructure.DAON_Attribute
|
|
{
|
|
[AttributeUsage(AttributeTargets.Property, Inherited = true)]
|
|
public class DOAN_Column : Attribute
|
|
{
|
|
private string _ColumnName;
|
|
|
|
public string ColumnName
|
|
{
|
|
get
|
|
{
|
|
return _ColumnName;
|
|
}
|
|
set
|
|
{
|
|
_ColumnName = value;
|
|
}
|
|
}
|
|
}
|
|
}
|