YNICTE/Model/VMCourse.cs

65 lines
2.2 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 VMCourse : VMBase
{
public String pcgcode { get; set; }
public String cgcode { get; set; }
public String cname { get; set; }
2020-12-09 16:57:47 +09:00
public String cshape { get; set; }
2020-12-10 15:19:50 +09:00
public String month { get; set; }
2020-10-12 14:39:23 +09:00
public CM CM { get; set; }
public IList<CM> CMs { get; set; }
2020-10-30 17:30:09 +09:00
public IList<CM> CMsEtc { get; set; }
2020-10-12 14:39:23 +09:00
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; }
2020-11-05 17:02:05 +09:00
public IList<CMinningscd> CMInningscds { get; set; }
2022-08-02 13:25:57 +09:00
/// <summary>
/// 선택한 교육일정 정보
/// 20220801
/// </summary>
public CMinningscd SelectCMInningscd { get; set; }
2020-11-06 11:20:26 +09:00
public Assign Assign { get; set; }
2020-10-12 14:39:23 +09:00
/// <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; }
2020-11-12 16:28:05 +09:00
public Int64 pplno { get; set; }
public Int64 payno { get; set; }
public PayItem PayItem { get; set; }
2020-11-16 17:42:59 +09:00
public PPLog PPLog { get; set; }
public int? selMonth { get; set; }
public int? isCompany { get; set; }
2020-10-12 14:39:23 +09:00
}
}