15 lines
343 B
C#
15 lines
343 B
C#
using System;
|
|
|
|
namespace DanieleMarotta.RiversongCodeShowcase
|
|
{
|
|
[AttributeUsage(AttributeTargets.Field)]
|
|
public class InjectServiceAttribute : Attribute
|
|
{
|
|
public InjectServiceAttribute(Type serviceType = null)
|
|
{
|
|
ServiceType = serviceType;
|
|
}
|
|
|
|
public Type ServiceType { get; set; }
|
|
}
|
|
} |