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