/***********************************************************************
* Project: baifenBinfa
* ProjectName: 百分兵法管理系统
* Web: http://chuanyin.com
* Author:
* Email:
* CreateTime: 202403/02
* Description: 暂无
***********************************************************************/
namespace CoreCms.Net.Model.ViewModels.UI
{
///
/// 枚举实体
///
public class EnumEntity
{
///
/// 枚举的描述
///
public string description { set; get; }
///
/// 枚举名称
///
public string title { set; get; }
///
/// 枚举对象的值
///
public int value { set; get; }
}
}