CampSceneAttachDto.cs 416 B

1234567891011121314
  1. using System.Collections.Generic;
  2. namespace WeOnlineApp.Configuration.Cache
  3. {
  4. public class CampSceneAttachDto
  5. {
  6. public string CampNo { get; set; }
  7. public string CampName { get; set; }
  8. public string SceneNo { get; set; }
  9. public string SceneName { get; set; }
  10. public string AttachNos { get; set; }
  11. public List<CampAttachDto> AttachInfos { get; set; }
  12. }
  13. }