net7/trunk/Net7Tools/CommonTools/Database/ColName.cs
2014-05-11 16:54:16 -04:00

19 lines
431 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace CommonTools.Database
{
/// <summary>
/// <para>An attribute to store the "real" database column name rather
/// than the textual conversion of an enum value.</para>
/// </summary>
class ColName : Attribute
{
public readonly string Text;
public ColName(string text)
{
Text = text;
}
}
}