Files
yavsc/Yavsc.Server/Interfaces/ITaggable.cs
2018-05-02 04:09:51 +02:00

14 lines
224 B
C#

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