using System; namespace Kyoo.Abstractions.Models.Attributes { /// /// Remove an property from the serialization pipeline. It will simply be skipped. /// [AttributeUsage(AttributeTargets.Property | AttributeTargets.Field)] public class SerializeIgnoreAttribute : Attribute { } }