InstExceptionEventArgs.cs 355 B

12345678910111213141516
  1. using System;
  2. namespace ChocolArm64.Events
  3. {
  4. public class InstExceptionEventArgs : EventArgs
  5. {
  6. public long Position { get; private set; }
  7. public int Id { get; private set; }
  8. public InstExceptionEventArgs(long position, int id)
  9. {
  10. Position = position;
  11. Id = id;
  12. }
  13. }
  14. }