using System.Collections.Generic; namespace WeApp.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 AttachInfos { get; set; } } }