Kyoo/Kyoo.Abstractions/Models/Attributes/Serializer/SerializeIgnoreAttribute.cs
2021-09-05 19:12:04 +02:00

11 lines
308 B
C#

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