ServiceAttribute.cs 290 B

123456789101112131415
  1. using System;
  2. namespace SRF.Service
  3. {
  4. [AttributeUsage(AttributeTargets.Class)]
  5. public sealed class ServiceAttribute : Attribute
  6. {
  7. public ServiceAttribute(Type serviceType)
  8. {
  9. this.ServiceType = serviceType;
  10. }
  11. public Type ServiceType { get; private set; }
  12. }
  13. }