TreeDto.cs 518 Bytes
namespace HHECS.WorkHourStatistics.Dtos
{
    public class TreeDto
    {
        public string Id { get; set; } = null!;

        public string Title { get; set; } = null!;

        /// <summary>
        /// 节点是否初始展开
        /// </summary>
        public bool Spread { get; set; }

        /// <summary>
        /// 节点是否初始为选中状态
        /// </summary>
        public bool Checked { get; set; }

        public List<TreeDto> Children { get; set; } = new List<TreeDto>();
    }
}