IRpcBuilder.cs 263 B

1234567891011121314151617
  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. public interface IRpcBuilder
  9. {
  10. IServiceCollection Services
  11. {
  12. get;
  13. }
  14. }
  15. }