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