CodeLiturgy.Dashboard/BlueWest.Views/Utils/RouteRecord.cs

15 lines
486 B
C#

namespace BlueWest.Views.Utils
{
public record RouteRecord(string routeKey, string location, string controllerName, List<RouteRecord> children, ViewType viewType = ViewType.Undefined)
{
public string RouteKey = routeKey;
public string Location = location;
public string ControllerName;
public List<RouteRecord> Children = children;
public ViewType ViewType = viewType;
}
public record RouteView(string Name, string Location);
}