mirror of
https://github.com/project-redbud/FunGame-Core.git
synced 2025-04-21 11:39:35 +08:00
17 lines
563 B
C#
17 lines
563 B
C#
namespace Milimoe.FunGame.Core.Library.Common.Event
|
|
{
|
|
public class RegisterEventArgs : GeneralEventArgs
|
|
{
|
|
public string Username { get; set; } = "";
|
|
public string Password { get; set; } = "";
|
|
public string Email { get; set; } = "";
|
|
|
|
public RegisterEventArgs(string username = "", string password = "", string email = "")
|
|
{
|
|
if (username.Trim() != "") Username = username;
|
|
if (password.Trim() != "") Password = password;
|
|
if (email.Trim() != "") Email = email;
|
|
}
|
|
}
|
|
}
|