DeserializeOnlyJsonPropertyAttribute.cs 216 B

1234567891011
  1. using System;
  2. namespace Masuit.Tools.Systems;
  3. /// <summary>
  4. /// 只允许反序列化
  5. /// </summary>
  6. [AttributeUsage(AttributeTargets.Property)]
  7. public class DeserializeOnlyJsonPropertyAttribute : Attribute
  8. {
  9. }