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

15 lines
489 B
C#

namespace CodeLiturgy.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);
}