- using System;
- namespace Masuit.Tools.Systems;
- /// <summary>
- /// 只允许反序列化
- /// </summary>
- [AttributeUsage(AttributeTargets.Property)]
- public class DeserializeOnlyJsonPropertyAttribute : Attribute;
- /// <summary>
- /// 只允许序列化
- /// </summary>
- [AttributeUsage(AttributeTargets.Property)]
- public class SerializeOnlyJsonPropertyAttribute : Attribute;
|