init
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user