| 12345678910111213141516171819 |
- using System;
- namespace Masuit.Tools.Systems;
- /// <summary>
- /// 序列化时忽略
- /// </summary>
- [AttributeUsage(AttributeTargets.Property)]
- public class SerializeIgnoreAttribute : Attribute
- {
- }
- /// <summary>
- /// 序列化时忽略
- /// </summary>
- [AttributeUsage(AttributeTargets.Property)]
- public class DeserializeIgnoreAttribute : Attribute
- {
- }
|