16 lines
270 B
C#
16 lines
270 B
C#
using System;
|
|
|
|
namespace SRF.Service
|
|
{
|
|
[AttributeUsage(AttributeTargets.Class)]
|
|
public sealed class ServiceAttribute : Attribute
|
|
{
|
|
public Type ServiceType { get; private set; }
|
|
|
|
public ServiceAttribute(Type serviceType)
|
|
{
|
|
ServiceType = serviceType;
|
|
}
|
|
}
|
|
}
|