You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
450 B
22 lines
450 B
namespace Admin.NET.Core.Service;
|
|
|
|
/// <summary>
|
|
/// 枚举类型输出参数
|
|
/// </summary>
|
|
public class EnumTypeOutput
|
|
{
|
|
/// <summary>
|
|
/// 枚举类型描述
|
|
/// </summary>
|
|
public string TypeDescribe { get; set; }
|
|
|
|
/// <summary>
|
|
/// 枚举类型名称
|
|
/// </summary>
|
|
public string TypeName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 枚举类型备注
|
|
/// </summary>
|
|
public string TypeRemark { get; set; }
|
|
}
|