#nullable enable
using System.Collections.Generic;
namespace DTNavigation.Model
{
/// 1뎁스 네비게이션 항목 데이터 모델
public record NavItemModel
{
public string Id { get; set; } = string.Empty;
public string Label { get; set; } = string.Empty;
/// 자식 항목 없이 단독으로 표시되는 최상위 항목 (예: 전체OVERVIEW)
public bool IsTopLevel { get; set; }
public IReadOnlyList Children { get; set; } = new List();
public bool HasChildren => Children.Count > 0;
}
/// 2뎁스 자식 항목 데이터 모델
public record NavChildItemModel
{
public string Id { get; set; } = string.Empty;
public string Label { get; set; } = string.Empty;
}
}