SystemTableAttribute.cs 227 B

12345678910
  1. namespace Admin.NET.Core;
  2. /// <summary>
  3. /// 系统表特性
  4. /// </summary>
  5. [SuppressSniffer]
  6. [AttributeUsage(AttributeTargets.Class, AllowMultiple = true, Inherited = true)]
  7. public class SystemTableAttribute : Attribute
  8. {
  9. }