using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace NP.Model { public class VMUser : VMBase { public IList Users { get; set; } public IList userauths { get; set; } public Users User { get; set; } public String SavedId { get; set; } public String em { get; set; } public IList Assigns { get; set; } public Assign Assign { get; set; } public IList AssignFees { get; set; } public IList AssignMans { get; set; } public IList Lects { get; set; } public IList CMPRs { get; set; } public String ru { get; set; } public int userno { get; set; } public int pwcallno { get; set; } public Councel Councel{get; set;} public IList Councels{get; set;} /// /// 로그인 실패 카운트 /// public int logincnt { get; set; } } /// /// 회원 탈퇴 히스토리 VM /// public class VMUsersLeave : VMBase { /// 처리상태 (UserLeave.status와 동일) : ""천제 "0"신청, "1"완료, "2"취소 public string LeaveStatus { get; set; } /// 회원 탈퇴 히스토리 리스트 public IList UserLeaves { get; set; } } }