24 lines
563 B
Plaintext
24 lines
563 B
Plaintext
|
|
using System;
|
||
|
|
|
||
|
|
namespace DTS.Common.Interface.Tags
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// describes a database record for a tag
|
||
|
|
/// </summary>
|
||
|
|
public interface ITag : ICloneable
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// Database id for tag
|
||
|
|
/// </summary>
|
||
|
|
int ID { get; set; }
|
||
|
|
/// <summary>
|
||
|
|
/// text associated with tag
|
||
|
|
/// </summary>
|
||
|
|
string Text { get; set; }
|
||
|
|
/// <summary>
|
||
|
|
/// whether tag is obsolete or not
|
||
|
|
/// </summary>
|
||
|
|
bool IsObsolete { get; set; }
|
||
|
|
}
|
||
|
|
}
|