InvokeAttribute.cs 208 B

123456789101112
  1. namespace ET
  2. {
  3. public class InvokeAttribute: BaseAttribute
  4. {
  5. public int Type { get; }
  6. public InvokeAttribute(int type = 0)
  7. {
  8. this.Type = type;
  9. }
  10. }
  11. }