CampSceneAttachDto.cs 594 B

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