using System; namespace Kyoo.Abstractions.Models.Attributes { /// /// Remove a property from the deserialization pipeline. The user can't input value for this property. /// [AttributeUsage(AttributeTargets.Property | AttributeTargets.Field)] public class DeserializeIgnoreAttribute : Attribute { } }