mirror of
				https://github.com/zoriya/Kyoo.git
				synced 2025-11-04 03:27:14 -05: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 { }
 | 
						|
} |