NotLogAttribute.cs 317 B

12345678910111213
  1. using Furion.DependencyInjection;
  2. using System;
  3. namespace Admin.NET.Core
  4. {
  5. /// <summary>
  6. /// 禁用日志特性
  7. /// </summary>
  8. [SuppressSniffer, AttributeUsage(AttributeTargets.Class | AttributeTargets.Method | AttributeTargets.Property)]
  9. public class NotLogAttribute : Attribute
  10. {
  11. }
  12. }