TreeDto.cs
384 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; }
public List<TreeDto> Children { get; set; } = new List<TreeDto>();
}
}