using System; namespace My.Admin.Common.Attributes { [AttributeUsage(AttributeTargets.Property)] public class SnowflakeAttribute : Attribute { public bool Enable { get; set; } = true; } }