using System; using JetBrains.Annotations; using Kyoo.Models.Attributes; namespace Kyoo.Common.Models.Attributes { /// /// An attribute to mark Link properties on resource. /// [AttributeUsage(AttributeTargets.Property)] [MeansImplicitUse] public class LinkAttribute : SerializeIgnoreAttribute { } }