IMRegister.cs 93 B

1234567
  1. namespace Base
  2. {
  3. public interface IMRegister<in T>
  4. {
  5. void Register(T component);
  6. }
  7. }