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

15 lines
489 B
C#
Raw Normal View History

2022-10-30 19:48:24 +03:00
namespace CodeLiturgy.Views.Utils
2022-09-26 04:05:23 +03:00
{
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);
}