using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Pcb.Domain
{
public class VideoCourseMainSearch
{
///
/// 标题
///
public string Title { get; set; }
///
/// 收费类型0免费 1收费 2预售
///
public int? ChargeType { get; set; }
///
/// 作者ID
///
public int? AuthorId { get; set; }
///
/// 作者
///
public string AuthorName { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EndCreateTime { get; set; }
public int? IsCheck { get; set; }
public int? DifficultyLevel { get; set; }
public string SoftClassify { get; set; }
public string CourseType { get; set; }
///
/// 是否删除
///
public int? IsDelete { get; set; }
///
/// 是否置顶
///
public bool? IsTop { get; set; }
///
/// 是否热卖
///
public bool? IsHot { get; set; }
}
}