yavsc/Yavsc/Interfaces/ITaggable.cs

14 lines
224 B
C#
Raw Normal View History

2017-10-02 13:15:01 +02:00
using Yavsc.Models.Relationship;
namespace Yavsc.Interfaces
{
public interface ITaggable<K>
{
void Tag(Tag tag);
void Detag(Tag tag);
string [] GetTags();
K Id { get; }
}
}