48 lines
1.6 KiB
C#
48 lines
1.6 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 CM CM { get; set; }
|
|||
|
|
public IList<CM> CMs { 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; }
|
|||
|
|
/// <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; }
|
|||
|
|
}
|
|||
|
|
}
|