49 lines
1.5 KiB
C#
49 lines
1.5 KiB
C#
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> Users { get; set; }
|
|
public IList<UserAuth> userauths { get; set; }
|
|
public Users User { get; set; }
|
|
public String SavedId { get; set; }
|
|
public String em { get; set; }
|
|
public IList<Assign> Assigns { get; set; }
|
|
public Assign Assign { get; set; }
|
|
public IList<AssignFee> AssignFees { get; set; }
|
|
public IList<AssignMan> AssignMans { get; set; }
|
|
public IList<Lect> Lects { get; set; }
|
|
public IList<CMPR> 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<Councel> Councels{get; set;}
|
|
|
|
/// <summary>
|
|
/// 로그인 실패 카운트
|
|
/// </summary>
|
|
public int logincnt { get; set; }
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
/// 회원 탈퇴 히스토리 VM
|
|
/// </summary>
|
|
public class VMUsersLeave : VMBase
|
|
{
|
|
/// <summary>처리상태 (UserLeave.status와 동일) : ""천제 "0"신청, "1"완료, "2"취소</summary>
|
|
public string LeaveStatus { get; set; }
|
|
|
|
|
|
/// <summary>회원 탈퇴 히스토리 리스트</summary>
|
|
public IList<UserLeave> UserLeaves { get; set; }
|
|
}
|
|
|
|
}
|