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