using System;
using GDZZ.Core;
namespace GDZZ.Application
{
///
/// 课程表输出参数
///
public class CourseDto
{
///
/// 主键Id
///
public long Id { get; set; }
///
/// 文件描述
///
public string Info { get; set; }
///
/// 标价
///
public decimal Price { get; set; }
///
/// 标签
///
public string Tags { get; set; }
///
/// 缩略图
///
public string Url { get; set; }
///
/// 标题
///
public string Title { get; set; }
}
}