mirror of
https://github.com/therealKyp/Earth-and-Beyond-server
synced 2026-08-13 22:23:03 -04:00
19 lines
431 B
C#
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;
|
|
}
|
|
}
|
|
}
|