32 lines
1.0 KiB
C#
32 lines
1.0 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace NP.Model
|
|
{
|
|
public class VMMy : VMBase
|
|
{
|
|
public bool ismain { get; set; }
|
|
public Assign Assign { get; set; }
|
|
public IList<Data> Datas { get; set; }
|
|
public IList<Data> Datas2 { get; set; }
|
|
public IList<Data> Datas3 { get; set; }
|
|
public IList<Board> Boards { get; set; }
|
|
public IList<PayItem> PIs { get; set; }
|
|
public IList<Lect> Lects { get; set; }
|
|
public Lect Lect { get; set; }
|
|
public Int64 lectno { get; set; }
|
|
public IList<CMInning> CMInnings { get; set; }
|
|
public Exam Exam { get; set; }
|
|
public IList<ExamUser> ExamUsers { get; set; }
|
|
public ExamUser ExamUser { get; set; }
|
|
public Users User { get; set; }
|
|
public IList<CM> CMs { get; set; }
|
|
public CM cmm { get; set; }
|
|
|
|
public IList<CRoomLectSdInfo> CRoomLectSdInfo { get; set; }
|
|
}
|
|
}
|