YNICTE/Model/VMUser.cs

31 lines
969 B
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;}
}
}