YNICTE/Model/VMCM.cs

62 lines
2.4 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 VMCM : VMBase
{
public IList<Term> Terms { get; set; }
public Term Term { get; set; }
public IList<CG> CGs { get; set; }
public IList<CG> CGs2 { get; set; }
public CG CG { get; set; }
public IList<CM> CMs { get; set; }
public IList<CM> CMs2 { get; set; }
public CM CM { get; set; }
public IList<CMPR> CMPRs { get; set; }
public IList<Data> Datas { get; set; }
public IList<Assign> Assigns { get; set; }
public IList<CMInning> CMInnings { get; set; }
public IList<Book> Books { get; set; }
2020-10-23 17:42:52 +09:00
public IList<CMinningscd> CMInningscds { get; set; }
2020-10-12 14:39:23 +09:00
public Book Book { get; set; }
public CMEV CMEV { get; set; }
public IList<EST> ESTs { get; set; }
public CMEX CMEX { get; set; }
public IList<CMEXQ> CMEXQs { get; set; }
public IList<CMEXLayer> CMEXLayers { get; set; }
public IList<ComCode> ComGroups { get; set; }
public int cmno { get; set; }
public int cmno1 { get; set; }
public int cmno2 { get; set; }
public IList<Question> Qs { get; set; }
public Question Question { get; set; }
public CMSD CMSD { get; set; }
public IList<RSC> RSCs { get; set; }
public RSC RSC { get; set; }
public IList<RSCQ> RSCQs { get; set; }
public CMRS CMRS { get; set; }
public CMMenu CMMenu { get; set; }
public IList<CMMenu> CMMenus { get; set; }
public IList<BoardMaster> BoardMasters { get; set; }
public IList<CT> CTs { get; set; }
public IList<CTPage> CTPs { get; set; }
public CT CT { get; set; }
public IList<Lect> Lects { get; set; }
public Exam Exam { get; set; }
public IList<Exam> Exams { get; set; }
public int estime { get; set; }
public int eetime { get; set; }
public ExamUser ExamUser { get; set; }
public IList<ExamUser> ExamUsers { get; set; }
public ExamUserRenew ExamUserRenew { get; set; }
public IList<ExamUserRenew> ExamUserRenews { get; set; }
public IList<UserAuth> userauths { get; set; }
2021-03-18 11:25:04 +09:00
public Assign Assign { get; set; }
2020-10-12 14:39:23 +09:00
}
}