Guest User

Untitled

a guest
Feb 22nd, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. public class CustomerSurvery
  2. {
  3. public CustomerSurvery()
  4. {
  5. this.Questions = new List<CustomerServeyQuestionModel>();
  6. }
  7.  
  8. public List<CustomerServeyQuestionModel> Questions { get; set; }
  9. }
  10.  
  11. public class CustomerServeyQuestionModel
  12. {
  13.  
  14. public CustomerServeyQuestionModel()
  15. {
  16. this.Answers = new List<CustomerSurveyAnswerModel>();
  17. }
  18.  
  19. public string QuestionId { get; set; }
  20. public string Question { get; set; }
  21. public List<CustomerSurveyAnswerModel> Answers { get; set; }
  22. }
  23.  
  24. public class CustomerSurveyAnswerModel
  25. {
  26. public string Answer { get; set; }
  27. }
Add Comment
Please, Sign In to add comment