mirror of
				https://github.com/zoriya/Kyoo.git
				synced 2025-11-03 19:17:16 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			291 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			291 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using System;
 | 
						|
 | 
						|
namespace Kyoo.Models.Attributes
 | 
						|
{
 | 
						|
	/// <summary>
 | 
						|
	/// An attribute to inform that the property is computed automatically and can't be assigned manually.
 | 
						|
	/// </summary>
 | 
						|
	[AttributeUsage(AttributeTargets.Property)]
 | 
						|
	public class ComputedAttribute : NotMergeableAttribute { }
 | 
						|
} |