IgnoreUpdateAttribute.cs 247 B

12345678910
  1. namespace Admin.NET.Core;
  2. /// <summary>
  3. /// 忽略更新种子数据特性
  4. /// </summary>
  5. [SuppressSniffer]
  6. [AttributeUsage(AttributeTargets.All, AllowMultiple = true, Inherited = true)]
  7. public class IgnoreUpdateAttribute : Attribute
  8. {
  9. }