using System.Collections.Generic; using SEIeSCM.Models.Dto.SysLogin; namespace SEIeSCM.Models.Model.SysLogin { public class SysLoginModel : ComnModel { #region [Property Define] public SysDto MD { set; get; } #endregion #region [생성자] public SysLoginModel() { } public SysLoginModel(SysDto dto) : this() { //this.User = User; MD = dto; } #endregion } }