writing some relation

This commit is contained in:
2017-06-01 12:04:16 +02:00
parent d0c684f6d1
commit 4bc53c34cf
2 changed files with 29 additions and 0 deletions

View File

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

View File

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