Files
Umbraco-CMS/src/umbraco.interfaces/ITag.cs
2013-10-24 11:49:09 +11:00

12 lines
332 B
C#

using System;
namespace umbraco.interfaces
{
[Obsolete("Use the TagService to query tags or the UmbracoHelper on the front-end and use the SetTags, RemoveTags extension methods on IContentBase to manipulate tags")]
public interface ITag
{
int Id { get; }
string TagCaption { get; }
string Group { get; }
}
}