Advertisement
Ludwiq

Collection

Feb 28th, 2015
205
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.34 KB | None | 0 0
  1. public class Collection
  2.     {
  3.         public int ID { get; set; }
  4.         [Required]
  5.         public string Name { get; set; }
  6.         public string Notes { get; set; }
  7.         public string OwnerName { get; set; }
  8.  
  9.         public virtual ICollection<Word> Words { get; set; }
  10.         public virtual Language Language { get; set; }
  11.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement