using System;
using Abp.AutoMapper;
using Abp.Application.Services.Dto;
namespace WePlatform.WeLib.Guide.Dto
{
///
/// 引导信息库管理
///
[AutoMapTo(typeof(GuideInfo)),AutoMapFrom(typeof(GuideInfo))]
public class GuideDto: EntityDto
{
///
/// 提示名称
///
public string Name { get; set; }
///
/// 提示详情
///
public string Description { get; set; }
///
/// 提示类型
///
public int GuideType { get; set; }
}
}