sqlsugar/Src/Asp.Net/SqlSugar/Abstract/ExecuteNavProvider/NavContext.cs

19 lines
371 B
C#
Raw Normal View History

2025-05-11 16:20:50 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SqlSugar
{
internal class NavContext
{
public List<NavContextItem> Items { get; set; }
}
internal class NavContextItem
{
public int Level { get; set; }
public string RootName { get; set; }
}
}