40 lines
1.5 KiB
C#
40 lines
1.5 KiB
C#
|
|
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; }
|
|||
|
|
}
|
|||
|
|
}
|