using System;
namespace Znyc.Admin.Security.Dtos
{
///
/// 输出对象模型
///
[Serializable]
public class DictionaryOutputDto
{
///
/// 设置或获取
///
public long Id { get; set; }
///
/// 字典父级
///
public long ParentId { get; set; }
///
/// 字典编码
///
public string Code { get; set; }
///
/// 字典值
///
public string Value { get; set; }
///
/// 描述
///
public string Description { get; set; }
///
/// 字典名称
///
public string Name { get; set; }
///
/// 启用
///
public bool IsEnabled { get; set; } = true;
///
/// 排序
///
public long Sort { get; set; }
public DictionaryOutputDto Children { get; set; }
}
}