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

11 lines
330 B
C#

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