mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-06-10 17:14:16 -04:00
10 lines
303 B
C#
10 lines
303 B
C#
using System;
|
|
|
|
namespace Kyoo.Models.Attributes
|
|
{
|
|
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field)]
|
|
public class SerializeIgnoreAttribute : Attribute {}
|
|
|
|
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field)]
|
|
public class DeserializeIgnoreAttribute : Attribute {}
|
|
} |