using System; namespace CPF.Windows.Json { /// /// 被标记的元素,在序列化或反序列化时时将被忽略 /// Marked elements are ignored when serialized or deserialized /// [AttributeUsage(AttributeTargets.Field | AttributeTargets.Property)] public class IgnoreKeyAttribute : Attribute { } }