mirror of
https://github.com/zoriya/Kyoo.git
synced 2026-01-06 20:20:39 -05: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 {}
|
|
} |