| 12345678910111213141516171819 |
- using System.Collections.Generic;
- using WeApp.BasicInfo.PhoneQuestion.Dto;
- using WeApp.Configuration.Cache;
- namespace WeApp.TrainingCamp.Dto
- {
- public class CampSceneAttachDto
- {
- public string CampNo { get; set; }
- public string CampName { get; set; }
- public string SceneNo { get; set; }
- public string SceneName { get; set; }
- public string AttachNos { get; set; }
- public string PhoneQuestionNos { get; set; }
- public List<CampAttachDto> AttachInfos { get; set; }
- public PhoneQuestionDto QuestionInfo { get; set; }
- }
- }
|