starting a tagger component
This commit is contained in:
parent
3fe818b4f1
commit
22e5259b91
9 changed files with 291 additions and 3 deletions
14
Yavsc/Interfaces/ITaggable.cs
Normal file
14
Yavsc/Interfaces/ITaggable.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue