67 lines
2.3 KiB
C#
67 lines
2.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace NP.Model
|
|
{
|
|
public class VMCourse : VMBase
|
|
{
|
|
public String pcgcode { get; set; }
|
|
public String cgcode { get; set; }
|
|
public String cname { get; set; }
|
|
public String cshape { get; set; }
|
|
public String month { get; set; }
|
|
public CM CM { get; set; }
|
|
public IList<CM> CMs { get; set; }
|
|
public IList<CM> CMsEtc { get; set; }
|
|
public CMEV CMEV { get; set; }
|
|
public IList<Book> CMBooks { get; set; }
|
|
public IList<Data> Datas { get; set; }
|
|
public Users User { get; set; }
|
|
public int cmno { get; set; }
|
|
public String cmbks { get; set; }
|
|
public int isrefund { get; set; }
|
|
public String usernos { get; set; }
|
|
public IList<CMPR> CMPRs { get; set; }
|
|
public int iscart { get; set; }
|
|
public int iscert { get; set; }
|
|
public IList<CMinningscd> CMInningscds { get; set; }
|
|
/// <summary>
|
|
/// 선택한 교육일정 정보
|
|
/// 20220801
|
|
/// </summary>
|
|
public CMinningscd SelectCMInningscd { get; set; }
|
|
public Assign Assign { get; set; }
|
|
/// <summary>
|
|
/// 0: 개인결제, 1: 단체결제
|
|
/// </summary>
|
|
public int isgroup { get; set; }
|
|
public int asno { get; set; }
|
|
public String email { get; set; }
|
|
public String mobile { get; set; }
|
|
public String telno { get; set; }
|
|
public String depart { get; set; }
|
|
public int? ccposition { get; set; }
|
|
|
|
public EduB2B EduB2B { get; set; }
|
|
public IList<Exam> Exams { get; set; }
|
|
public Exam Exam { get; set; }
|
|
public int exno { get; set; }
|
|
public IList<Book> Books { get; set; }
|
|
public Book Book { get; set; }
|
|
public int bkno { get; set; }
|
|
public int pcnt { get; set; }
|
|
public Int64 pplno { get; set; }
|
|
public Int64 payno { get; set; }
|
|
public PayItem PayItem { get; set; }
|
|
public PPLog PPLog { get; set; }
|
|
|
|
public int? selMonth { get; set; }
|
|
public int? isCompany { get; set; }
|
|
public int courseType { get; set; }
|
|
public IList<CourseInfo> courseInfos;
|
|
}
|
|
}
|