- using System.Collections.Generic;
- namespace WeOnlineApp.Configuration.Cache
- {
- 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 List<CampAttachDto> AttachInfos { get; set; }
- }
- }
|