/***********************************************************************
* Project: baifenBinfa
* ProjectName: 百分兵法管理系统
* Web: http://chuanyin.com
* Author:
* Email:
* CreateTime: 202403/02
* 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; }
}
}