12345678910111213141516171819 |
- using System;
- namespace SRF
- {
- [AttributeUsage(AttributeTargets.Field)]
- public class ImportAttribute : Attribute
- {
- public ImportAttribute()
- {
- }
- public ImportAttribute(Type serviceType)
- {
- this.Service = serviceType;
- }
- public readonly Type Service;
- }
- }
|