mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-05-30 19:54:16 -04:00
11 lines
305 B
C#
11 lines
305 B
C#
using System;
|
|
|
|
namespace Kyoo.Abstractions.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 { }
|
|
}
|