mirror of
https://github.com/project-redbud/FunGame-Core.git
synced 2025-12-05 16:16:33 +00:00
15 lines
347 B
C#
15 lines
347 B
C#
namespace Milimoe.FunGame.Core.Library.Common.Event
|
|
{
|
|
public class LoginEventArgs : GeneralEventArgs
|
|
{
|
|
public string Username;
|
|
public string Password;
|
|
|
|
public LoginEventArgs(string username = "", string password = "")
|
|
{
|
|
Username = username;
|
|
Password = password;
|
|
}
|
|
}
|
|
}
|