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

18 lines
347 B
C#
Raw Normal View History

2020-10-26 13:59:46 +01:00
namespace zero.Core.Routing
{
public class RouteProviderEndpoint
{
public RouteProviderEndpoint() { }
public RouteProviderEndpoint(string controller, string action = "Index")
{
Controller = controller;
Action = action;
}
2020-10-26 13:59:46 +01:00
public string Controller { get; set; }
public string Action { get; set; }
}
}