using Abp.Application.Services.Dto;
using Abp.AutoMapper;
namespace WeApp.BasicInfo.StudentTip.Dto
{
///
/// 学员提示信息
///
[AutoMapTo(typeof(StudentTipInfo)), AutoMapFrom(typeof(StudentTipInfo))]
public class StudentTipDto : EntityDto
{
///
/// 简称
///
public string Name { get; set; }
///
/// 角色
///
public string RoleName { get; set; }
///
/// 内容
///
public string Content { get; set; }
}
}