YNICTE/Model/VMUser.cs

34 lines
1.1 KiB
C#
Raw Normal View History

2020-10-12 14:39:23 +09:00
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; }
2021-01-06 13:01:08 +09:00
public Councel Councel{get; set;}
public IList<Councel> Councels{get; set;}
2020-10-12 14:39:23 +09:00
/// <summary>
/// 로그인 실패 카운트
/// </summary>
public int logincnt { get; set; }
2020-10-12 14:39:23 +09:00
}
}