NotLogAttribute.cs 318 B

1234567891011121314
  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. }