mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-06-23 15:30:34 -04: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 { }
|
|
} |