ImportAttribute.cs 293 B

12345678910111213141516171819
  1. using System;
  2. namespace SRF
  3. {
  4. [AttributeUsage(AttributeTargets.Field)]
  5. public class ImportAttribute : Attribute
  6. {
  7. public ImportAttribute()
  8. {
  9. }
  10. public ImportAttribute(Type serviceType)
  11. {
  12. this.Service = serviceType;
  13. }
  14. public readonly Type Service;
  15. }
  16. }