using System.Collections.Generic; using SEIeSCM.Models.Dto.POPUP; namespace SEIeSCM.Models.Model.POPUP { public class POPUPModel : ComnModel { public POPUPDto MD { set; get; } #region [생성자] public POPUPModel() { } public POPUPModel(POPUPDto dto) : this() { MD = dto; } #endregion } }