YD_Event.Admin/YD_Event.Core/Shared/TreeSelectOutput.cs
2025-12-17 11:12:13 +08:00

11 lines
244 B
C#

namespace YD_Event.Core.Shared;
/// <summary>
/// 树形下拉框
/// </summary>
public class TreeSelectOutput : SelectOutput
{
/// <summary>
/// 子选项
/// </summary>
public List<TreeSelectOutput> Children { get; set; }
}