Kyoo/Kyoo.Abstractions/Models/Attributes/ComputedAttribute.cs
2021-09-05 10:52:20 +02:00

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 { }
}