Advertisement
Guest User

Untitled

a guest
Jun 22nd, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. public int Id { get; set; }
  2.  
  3. public string Title { get; set; }
  4.  
  5. public string Author { get; set; }
  6.  
  7. public string Genre { get; set; }
  8.  
  9. public int Year { get; set; }
  10.  
  11. public string Synopsis { get; set; }
  12.  
  13. public int Votes { get; set; }
  14.  
  15. public int Rating { get; set; }
  16.  
  17. public string ImageUrl { get; set; }
  18.  
  19. public List<ApplicationUser> Users { get; set; }
  20.  
  21. public Book()
  22. {
  23. Users = new List<ApplicationUser>();
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement