InjectInfo.cs 304 B

12345678910111213
  1. using System;
  2. using System.Reflection;
  3. namespace Blue
  4. {
  5. public class InjectInfo
  6. {
  7. public Type BaseType { get; set; }
  8. public FieldInfo InjectField { get; set; }
  9. public Type InjectType { get; set; }
  10. public InjectScope InjectScope { get; set; }
  11. }
  12. }