MosswartMassacre/Unused/Decal.Adapter.Wrappers/LoginEventArgs.cs
2025-06-09 02:03:11 +02:00

15 lines
191 B
C#

using System;
namespace Decal.Adapter.Wrappers;
public class LoginEventArgs : EventArgs
{
private int myId;
public int Id => myId;
internal LoginEventArgs(int Id)
{
myId = Id;
}
}