Files
DP44/Common/DTS.CommonCore/.svn/pristine/99/99949a89717ca26ec714ae793ce5d88453192c39.svn-base
2026-04-17 14:55:32 -04:00

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; }
}
}