using System; using System.Collections.Generic; using System.Linq; using System.Reflection; using System.Threading.Tasks; namespace JsonRPC4.Router.Defaults { public class RpcEndpointInfo { public Dictionary> Routes { get; } // Token: 0x060000D3 RID: 211 RVA: 0x00003A40 File Offset: 0x00001C40 public RpcEndpointInfo(Dictionary> routes) { if (routes == null) { throw new ArgumentNullException("routes"); } this.Routes = routes; } } }