using System; using JetBrains.Annotations; using Kyoo.Controllers; namespace Kyoo.Models.Attributes { /// /// An attribute to inform that the service will be injected automatically by a service provider. /// /// /// It should only be used on and it will be injected before /// calling . /// [AttributeUsage(AttributeTargets.Property)] [MeansImplicitUse(ImplicitUseKindFlags.Assign)] public class InjectedAttribute : Attribute { } }