AInstExceptionEventArgs.cs 250 B

1234567891011121314
  1. using System;
  2. namespace ChocolArm64.Events
  3. {
  4. public class AInstExceptionEventArgs : EventArgs
  5. {
  6. public int Id { get; private set; }
  7. public AInstExceptionEventArgs(int Id)
  8. {
  9. this.Id = Id;
  10. }
  11. }
  12. }