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