CampSceneAttachDto.cs 733 B

12345678910111213141516171819202122
  1. using System.Collections.Generic;
  2. using WeApp.BasicInfo.PhoneQuestion.Dto;
  3. using WeApp.BasicInfo.StudentTip.Dto;
  4. using WeApp.Configuration.Cache;
  5. namespace WeApp.TrainingCamp.Dto
  6. {
  7. public class CampSceneAttachDto
  8. {
  9. public string CampNo { get; set; }
  10. public string CampName { get; set; }
  11. public string SceneNo { get; set; }
  12. public string SceneName { get; set; }
  13. public string AttachNos { get; set; }
  14. public string TipNos { get; set; }
  15. public string PhoneQuestionNos { get; set; }
  16. public List<CampAttachDto> AttachInfos { get; set; }
  17. public List<StudentTipDto> TipInfos { get; set; }
  18. public PhoneQuestionDto QuestionInfo { get; set; }
  19. }
  20. }