Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. public class Post
  2. {
  3. public int PostId { get; set; }
  4. public string Title { get; set; }
  5. public string Content { get; set; }
  6.  
  7. public List<PostTag> PostTags { get; set; }
  8. }
  9.  
  10. public class Tag
  11. {
  12. public string TagId { get; set; }
  13.  
  14. public List<PostTag> PostTags { get; set; }
  15. }
  16.  
  17. public class PostTag
  18. {
  19. public int PostId { get; set; }
  20. public Post Post { get; set; }
  21.  
  22. public string TagId { get; set; }
  23. public Tag Tag { get; set; }
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement