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