11 lines
246 B
C#
11 lines
246 B
C#
|
|
namespace Easy.Admin.Core.Shared;
|
|||
|
|
/// <summary>
|
|||
|
|
/// 树形下拉框
|
|||
|
|
/// </summary>
|
|||
|
|
public class TreeSelectOutput : SelectOutput
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 子选项
|
|||
|
|
/// </summary>
|
|||
|
|
public List<TreeSelectOutput> Children { get; set; }
|
|||
|
|
}
|