mirror of
https://github.com/OpenDAoC/OpenDAoC-Core
synced 2026-08-12 00:23:14 -04:00
19 lines
377 B
C#
19 lines
377 B
C#
using System;
|
|
|
|
namespace DOL.Database.Attributes
|
|
{
|
|
/// <summary>
|
|
/// Attribute to indicate the column is read only once created
|
|
/// </summary>
|
|
///
|
|
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field)]
|
|
public class ReadOnly : Attribute
|
|
{
|
|
/// <summary>
|
|
/// Constructor for Attribute
|
|
/// </summary>
|
|
public ReadOnly()
|
|
{
|
|
}
|
|
}
|
|
}
|