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