mirror of
https://git.743378673.xyz/MeloNX/MeloNX.git
synced 2025-06-28 03:16:23 +02:00
14 lines
No EOL
241 B
C#
14 lines
No EOL
241 B
C#
using System;
|
|
|
|
namespace ChocolArm64.State
|
|
{
|
|
public class AExceptionEventArgs : EventArgs
|
|
{
|
|
public int Id { get; private set; }
|
|
|
|
public AExceptionEventArgs(int Id)
|
|
{
|
|
this.Id = Id;
|
|
}
|
|
}
|
|
} |