IEventAttribute.cs 158 B

12345678
  1. namespace Common.Event
  2. {
  3. public class IEventAttribute
  4. {
  5. public int Type { get; set; }
  6. public int Order { get; set; }
  7. }
  8. }