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