using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace JsonRPC4.Router { public class RpcRouteInfo { public RpcMethodInfo MethodInfo { get; } public RpcPath Path { get; } public IServiceProvider RequestServices { get; } internal RpcRouteInfo(RpcMethodInfo methodInfo, RpcPath path, IServiceProvider requestServices) { MethodInfo = methodInfo; Path = path; RequestServices = requestServices; } } }