選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

ILuConvertersAllocator.cs 155B

123456789
  1. using System;
  2. namespace Luticate2.Auth.Utils.Interfaces
  3. {
  4. public interface ILuConvertersAllocator
  5. {
  6. object GetInstance(Type type);
  7. }
  8. }