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