Advertisement
Ludwiq

Word class

Dec 31st, 2014
205
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.49 KB | None | 0 0
  1. public class Word
  2.     {
  3.         public int ID { get; set; }
  4.         public string UsersLanguage { get; set; }
  5.         public string OtherLanguage { get; set; }
  6.         public string Notes { get; set; }
  7.         public DateTime LastReviewed { get; set; }
  8.  
  9.         public DateTime NextReview { get; set; }
  10.         [DefaultValue(10)]
  11.         public int Difficulty { get; set; }
  12.  
  13.         public string OwnerName { get; set; }
  14.  
  15.         [NotMapped]
  16.         public bool ModifyReview = false;
  17.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement