RpcBuilder.cs 362 B

123456789101112131415161718192021
  1. using Microsoft.Extensions.DependencyInjection;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Threading.Tasks;
  6. namespace JsonRPC4.Builder
  7. {
  8. internal class RpcBuilder : IRpcBuilder
  9. {
  10. public IServiceCollection Services
  11. {
  12. get;
  13. }
  14. public RpcBuilder(IServiceCollection services)
  15. {
  16. Services = services;
  17. }
  18. }
  19. }