mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-04-05 17:37:51 +08:00
14 lines
368 B
C#
14 lines
368 B
C#
using System;
|
|
|
|
namespace CPF.Windows.Json
|
|
{
|
|
/// <summary>
|
|
/// 被标记的元素,在序列化或反序列化时时将被忽略
|
|
/// Marked elements are ignored when serialized or deserialized
|
|
/// </summary>
|
|
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Property)]
|
|
public class IgnoreKeyAttribute : Attribute
|
|
{
|
|
}
|
|
}
|