using System; using Kyoo.Abstractions.Controllers; namespace Kyoo.Abstractions.Models.Attributes { /// /// The targeted relation can be edited via calls to the repository's method. /// [AttributeUsage(AttributeTargets.Property)] public class EditableRelationAttribute : Attribute { } }