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 VMCRoom : VMBase
|
|
|
|
|
|
{
|
|
|
|
|
|
public Int64 cmino{ get; set; }
|
|
|
|
|
|
public int ctno { get; set; }
|
|
|
|
|
|
public int cpno { get; set; }
|
|
|
|
|
|
public Int64 lectno { get; set; }
|
|
|
|
|
|
public int pseq { get; set; }
|
|
|
|
|
|
public int ismobile { get; set; }
|
|
|
|
|
|
public int istaste { get; set; }
|
|
|
|
|
|
public int status { get; set; }
|
|
|
|
|
|
public CMInning CMInning { get; set; }
|
|
|
|
|
|
public IList<LectInning> LectInnings { get; set; }
|
|
|
|
|
|
public LectInningPage lip { get; set; }
|
|
|
|
|
|
public IList<CTPage> Pages { get; set; }
|
|
|
|
|
|
public CTPage Page { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public Int64 croomlectno { get; set; }
|
|
|
|
|
|
public int croomcmno { get; set; }
|
|
|
|
|
|
public int croomusertype { get; set; }
|
|
|
|
|
|
public String croomparam { get; set; }
|
|
|
|
|
|
public IList<Data> Datas { get; set; }
|
|
|
|
|
|
public CMEV CMEV { get; set; }
|
|
|
|
|
|
public Lect Lect { get; set; }
|
|
|
|
|
|
public IList<CMPR> CMPRs { get; set; }
|
|
|
|
|
|
public CM CM { get; set; }
|
|
|
|
|
|
public IList<CMRS> CMRSes { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public int croombmno { get; set; }
|
|
|
|
|
|
public BoardMaster BM { get; set; }
|
|
|
|
|
|
public IList<BoardMasterOpening> BMOs { get; set; }
|
|
|
|
|
|
public int? opno { get; set; }
|
|
|
|
|
|
public String scc { get; set; }
|
|
|
|
|
|
public IList<Board> Boards { get; set; }
|
|
|
|
|
|
public Board Board { get; set; }
|
|
|
|
|
|
public IList<BoardCMT> BoardCMTs { get; set; }
|
|
|
|
|
|
public Int64 BNo { get; set; }
|
|
|
|
|
|
public Int64? PBNo { get; set; }
|
|
|
|
|
|
public int estno { get; set; }
|
|
|
|
|
|
public LectEX LectEX { get; set; }
|
|
|
|
|
|
public IList<LectEXQ> UserExamDatas { get; set; }
|
|
|
|
|
|
public IList<QuestionItem> QuestionItems { get; set; }
|
|
|
|
|
|
public IList<CMEXQ> EQs { get; set; }
|
|
|
|
|
|
public IList<CMEXQ> EQs2 { get; set; }
|
|
|
|
|
|
public LectSD LectSD { get; set; }
|
|
|
|
|
|
public IList<LectSDBoard> LectSDBoards { get; set; }
|
|
|
|
|
|
public LectSDBoard LectSDBoard { get; set; }
|
|
|
|
|
|
public IList<PayItem> PayItems { get; set; }
|
|
|
|
|
|
public IList<CG> CGs { get; set; }
|
|
|
|
|
|
public IList<PayTax> PayTaxes { get; set; }
|
|
|
|
|
|
public IList<PayTax> PayTaxes2 { get; set; }
|
|
|
|
|
|
public IList<PayItem> PayTaxItem { get; set; }
|
2020-11-26 13:35:01 +09:00
|
|
|
|
public IList<Lect> Lects { get; set; }
|
2021-06-23 18:11:34 +09:00
|
|
|
|
public IList<Completion> Completions { get; set; }
|
2021-08-23 15:10:15 +09:00
|
|
|
|
public Data ErrLi { get; set; }
|
2020-10-12 14:39:23 +09:00
|
|
|
|
}
|
|
|
|
|
|
}
|