YNICTE/Model/VMLect.cs

42 lines
1.6 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 VMLect : VMBase
{
public IList<Lect> Lects { get; set; }
public Lect Lect { get; set; }
public IList<SCDLect> SCDLects { get; set; }
public IList<Term> Terms { get; set; }
public IList<CG> CGs { get; set; }
public IList<CM> CMs { get; set; }
public CM CM { get; set; }
public IList<CMRS> CMRSs { get; set; }
public CMRS CMRS { get; set; }
public IList<RSCQ> RSCQs { get; set; }
public IList<QuestionItem> QuestionItems { get; set; }
public IList<LectRS> LectRSs { get; set; }
public IList<PayDVR> PayDVRs { get; set; }
public IList<EduB2B> EduB2Bs { get; set; }
public EduB2B EduB2B { get; set; }
public IList<CMInning> CMInnings { get; set; }
public CMInning CMInning { get; set; }
public IList<LectInning> LectInnings { get; set; }
public IList<LectInningPage> LectInningPages { get; set; }
public CMEV CMEV { get; set; }
public IList<PageLog> PageLogs { get; set; }
public IList<CMEX> CMEXes { get; set; }
public IList<LectEX> LectEXes { get; set; }
public IList<CMSD> CMSDs { get; set; }
public IList<LectSD> LectSDs { get; set; }
public EmailSend EmailSend { get; set; }
public IList<EmailSend> EmailBans { get; set; }
2021-11-03 15:19:08 +09:00
public IList<CMinningscd> CMinningscds { get; set; }
public Excellog excellog { get; set; }
2020-10-12 14:39:23 +09:00
}
}