/***********************************************************************
* Project: CoreCms
* ProjectName: 核心内容管理系统
* Web: https://www.corecms.net
* Author: 大灰灰
* Email: jianweie@163.com
* CreateTime: 2021/1/31 21:45:10
* Description: 暂无
***********************************************************************/
using System.ComponentModel;
namespace CoreCms.Net.Model.ViewModels.DTO
{
///
///
public class ManagerDto
{
///
/// 序列
///
[DisplayName("序列")]
public int Id { get; set; }
///
/// 用户名
///
[DisplayName("用户名")]
public string UserName { get; set; }
///
/// 昵称
///
[DisplayName("昵称")]
public string NickName { get; set; }
///
/// 描述
///
[DisplayName("描述")]
public string Description { get; set; }
}
}