mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-06-16 20:14:16 -04:00
10 lines
274 B
C#
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 { }
|
|
} |