OrderAttribute.cs 257 B

1234567891011121314
  1. using System;
  2. namespace Padi.RedmineApi.Tests.Infrastructure
  3. {
  4. public class OrderAttribute : Attribute
  5. {
  6. public OrderAttribute(int index)
  7. {
  8. Index = index;
  9. }
  10. public int Index { get; private set; }
  11. }
  12. }