mirror of
https://git.743378673.xyz/MeloNX/MeloNX.git
synced 2025-05-15 09:15:18 +00:00
14 lines
227 B
C#
14 lines
227 B
C#
using System;
|
|
|
|
namespace ChocolArm64.State
|
|
{
|
|
public class SvcEventArgs : EventArgs
|
|
{
|
|
public int Id { get; private set; }
|
|
|
|
public SvcEventArgs(int Id)
|
|
{
|
|
this.Id = Id;
|
|
}
|
|
}
|
|
} |