mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-06-03 21:54:49 -04:00
11 lines
330 B
C#
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 { }
|
|
}
|