17 lines
410 B
C#
17 lines
410 B
C#
#nullable enable
|
|
using System;
|
|
using UVC.UI.List.Tree;
|
|
|
|
namespace SHI.modal
|
|
{
|
|
public class ModelDetailListItemData : TreeListItemData
|
|
{
|
|
/// <summary>
|
|
/// 아이템의 가시성 아이콘 클릭 시 실행할 사용자 정의 동작.
|
|
/// </summary>
|
|
public Action<TreeListItemData, bool>? OnClickVisibleAction;
|
|
|
|
public bool IsVisible { get; set; } = true;
|
|
}
|
|
}
|