YD_Event.Admin/YD_Event.Core/Shared/TreeSelectOutput.cs

11 lines
244 B
C#
Raw Permalink Normal View History

2025-12-17 11:12:13 +08:00
namespace YD_Event.Core.Shared;
2025-12-17 10:32:52 +08:00
/// <summary>
/// 树形下拉框
/// </summary>
public class TreeSelectOutput : SelectOutput
{
/// <summary>
/// 子选项
/// </summary>
public List<TreeSelectOutput> Children { get; set; }
}