mta-mono/MultiTheftAuto/EventArgs/PlayerChangeNickEventArgs.cs
2015-12-12 13:10:23 +03:00

31 lines
486 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MultiTheftAuto.EventArgs
{
public class PlayerChangeNickEventArgs : CancelEventArgs
{
public PlayerChangeNickEventArgs( Element _this, string oldNick, string newNick )
: base( _this )
{
this.Old = oldNick;
this.New = newNick;
}
public string Old
{
private set;
get;
}
public string New
{
private set;
get;
}
}
}