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