1
0

SnowflakeAttribute.cs 217 B

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