初始化

This commit is contained in:
xhm
2023-11-21 23:05:03 +08:00
commit 2455630dad
2252 changed files with 466529 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
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
{
}
}