mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-05 05:27:37 +08:00
18 lines
420 B
C#
18 lines
420 B
C#
using System.Diagnostics;
|
|
|
|
namespace AntDesign.Docs.Routing
|
|
{
|
|
[DebuggerDisplay("{TemplateText}")]
|
|
internal class RouteTemplate
|
|
{
|
|
public RouteTemplate(string templateText, TemplateSegment[] segments)
|
|
{
|
|
TemplateText = templateText;
|
|
Segments = segments;
|
|
}
|
|
|
|
public string TemplateText { get; }
|
|
|
|
public TemplateSegment[] Segments { get; }
|
|
}
|
|
} |