Advertisement
Guest User

Untitled

a guest
Jul 17th, 2016
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.68 KB | None | 0 0
  1. public class Project
  2. {
  3.     public int ProjectID { get; set; }
  4.     public string Name { get; set; }
  5.     public string ShortDesc { get; set; }
  6.     public string LongDesc { get; set; }
  7.     public int Status { get; set; }
  8.     public DateTime StartDate { get; set; }
  9.     public DateTime EndDate { get; set; }
  10.     public string Image { get; set; }
  11.     public List<Note> Notes { get; }
  12. }
  13.  
  14. public class Note
  15. {
  16.     public int NoteID { get; set; }
  17.     public int ProjectID { get; set; }
  18.     public string Name { get; set; }
  19.     public string Content { get; set; }
  20.     public int Status { get; set; }
  21.     public DateTime Timestamp { get; set; }
  22.     public string Tags { get; set; }
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement