Files
mixtape/zero.Core/Routing/IResolvedRoute.cs
T

12 lines
176 B
C#
Raw Normal View History

2020-10-21 14:11:58 +02:00
using System;
using System.Collections.Generic;
using System.Text;
namespace zero.Core.Routing
{
2020-10-21 15:16:47 +02:00
public interface IResolvedRoute
2020-10-21 14:11:58 +02:00
{
IRoute Route { get; set; }
}
}