NotGenAttribute.cs 245 B

1234567891011
  1. using System;
  2. namespace ZhonTai.Admin.Core.Attributes;
  3. /// <summary>
  4. /// 不生成特性
  5. /// </summary>
  6. [AttributeUsage(AttributeTargets.Property | AttributeTargets.Field, AllowMultiple = false)]
  7. public class NotGenAttribute : Attribute
  8. {
  9. }