Kyoo/Kyoo.Common/Models/Attributes/RelationAttributes.cs

10 lines
274 B
C#

using System;
namespace Kyoo.Models.Attributes
{
[AttributeUsage(AttributeTargets.Property, Inherited = false)]
public class EditableRelationAttribute : Attribute { }
[AttributeUsage(AttributeTargets.Property)]
public class LoadableRelationAttribute : Attribute { }
}