mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-06-17 04:24:16 -04:00
13 lines
328 B
C#
13 lines
328 B
C#
using System;
|
|
using JetBrains.Annotations;
|
|
using Kyoo.Models.Attributes;
|
|
|
|
namespace Kyoo.Common.Models.Attributes
|
|
{
|
|
/// <summary>
|
|
/// An attribute to mark Link properties on resource.
|
|
/// </summary>
|
|
[AttributeUsage(AttributeTargets.Property)]
|
|
[MeansImplicitUse]
|
|
public class LinkAttribute : SerializeIgnoreAttribute { }
|
|
} |