Kyoo/Kyoo.Common/Models/Attributes/ComputedAttribute.cs
2021-06-22 23:19:32 +02:00

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