mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-09-19 10:08:26 +08:00
14 lines
356 B
C#
14 lines
356 B
C#
using System;
|
|
|
|
namespace CPF.Windows.Json
|
|
{
|
|
/// <summary>
|
|
/// 序列化仅包含此元素,和Ignore相反
|
|
/// Serialization contains only this element, as opposed to Ignore
|
|
/// </summary>
|
|
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Property)]
|
|
public class JsonOnlyIncludeAttribute : Attribute
|
|
{
|
|
}
|
|
}
|