123456789101112131415161718 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- namespace JsonRPC4.Router
- {
- public interface IRpcParameter
- {
- RpcParameterType Type
- {
- get;
- }
- bool TryGetValue(Type type, out object value);
- }
- }
|