15 lines
191 B
C#
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;
|
|
}
|
|
}
|