using System; namespace Kyoo.Abstractions.Models.Attributes { /// /// An attribute to inform that the property is computed automatically and can't be assigned manually. /// [AttributeUsage(AttributeTargets.Property)] public class ComputedAttribute : NotMergeableAttribute { } }