using System;
namespace Admin.NET.Application
{
///
/// 特殊批次招生输出参数
///
public class BusSpecialRecruitStudentsDto
{
///
/// 招生批次名称
///
public string Title { get; set; }
///
/// 封面
///
public string Pic { get; set; }
///
/// 批次描述
///
public string Summary { get; set; }
///
/// 跳转链接
///
public string Url { get; set; }
///
/// Sort排序
///
public int Sort { get; set; }
///
/// Id主键
///
public long Id { get; set; }
}
}