mirror of
https://github.com/ChronosX88/mta-mono.git
synced 2024-11-22 18:22:20 +00:00
31 lines
486 B
C#
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;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|