starting a tagger component

This commit is contained in:
Paul Schneider 2017-10-02 13:15:01 +02:00
commit 22e5259b91
9 changed files with 291 additions and 3 deletions

View file

@ -0,0 +1,14 @@
using Yavsc.Models.Relationship;
namespace Yavsc.Interfaces
{
public interface ITaggable<K>
{
void Tag(Tag tag);
void Detag(Tag tag);
string [] GetTags();
K Id { get; }
}
}