InvokeAttribute.cs 183 B

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