2018-02-04 18:08:20 -05:00
|
|
|
using System;
|
|
|
|
|
|
|
|
namespace ChocolArm64.State
|
|
|
|
{
|
2018-02-10 08:24:16 -05:00
|
|
|
public class AExceptionEventArgs : EventArgs
|
2018-02-04 18:08:20 -05:00
|
|
|
{
|
|
|
|
public int Id { get; private set; }
|
|
|
|
|
2018-02-10 08:24:16 -05:00
|
|
|
public AExceptionEventArgs(int Id)
|
2018-02-04 18:08:20 -05:00
|
|
|
{
|
|
|
|
this.Id = Id;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|