1
0

SnowflakeAttribute.cs 196 B

123456789
  1. using System;
  2. namespace ZhonTai.Admin.Core.Attributes;
  3. [AttributeUsage(AttributeTargets.Property)]
  4. public class SnowflakeAttribute : Attribute
  5. {
  6. public bool Enable { get; set; } = true;
  7. }