using System;
namespace NP.Model
{
///
/// 강의실 과제제출 정보
///
public class CRoomLectSdInfo
{
/// 수강번호(수강키)
public int lectno { get; set; }
/// 회원번호
public int userno { get; set; }
/// 과제토론명
public string sdname { get; set; }
/// 과제토론키
public int sdno { get; set; }
/// 온라인강좌 수강시작일
public DateTime sdate { get; set; }
/// 온라인강좌 수강종료일
public DateTime edate { get; set; }
/// 출석율(%)
public int attrate { get; set; }
/// 과제토론 참여조건
public byte sdcondition { get; set; }
/// 과제토론 제출여부
public bool issubmit { get; set; }
/// 과제토론 제출일시
public DateTime submittime { get; set; }
/// 과제토론 평가여부
public bool ischeck { get; set; }
/// 과제토론 평가일시
public DateTime checktime { get; set; }
/// 현재 기간내 수강여부
public bool iscurrentlecture { get; set; }
/// 과정번호 (과정키)
public int cmno { get; set; }
}
}