writing some relation

vnext
Paul Schneider 7 years ago
parent d0c684f6d1
commit 4bc53c34cf
2 changed files with 29 additions and 0 deletions

@ -0,0 +1,10 @@
namespace Yavsc.Models.Relationship
{
public class Relation<TDescription>
{
public RelationKind Kind { get; set; }
TDescription Description { get; set; }
}
}

@ -0,0 +1,19 @@
namespace Yavsc.Models.Relationship
{
public enum RelationKind
{
Css,
Favicon,
WebPage,
Video,
Image,
Audio,
EmailAddress,
Position,
PostalAddress,
Work,
Business,
Friend,
Family
}
}
Loading…