AutoIncrementAttribute.cs 203 B

123456789
  1. using System;
  2. namespace Ant.Entity
  3. {
  4. [AttributeUsage(AttributeTargets.Property | AttributeTargets.Field, AllowMultiple = false)]
  5. public class AutoIncrementAttribute : Attribute
  6. {
  7. }
  8. }