SequenceAttribute.cs 344 B

1234567891011121314
  1. using System;
  2. namespace Ant.Oracle
  3. {
  4. [AttributeUsage(AttributeTargets.Property | AttributeTargets.Field, AllowMultiple = false)]
  5. public class SequenceAttribute : Attribute
  6. {
  7. public SequenceAttribute(string name)
  8. {
  9. this.Name = name;
  10. }
  11. public string Name { get; private set; }
  12. }
  13. }