asternet/Asterisk.2013/Asterisk.NET/Manager/Event/NewAccountCodeEvent.cs
2014-01-08 14:16:39 +00:00

28 lines
510 B
C#

using System;
namespace AsterNET.Manager.Event
{
public class NewAccountCodeEvent : ManagerEvent
{
private string accountCode;
private string oldAccountCode;
public string AccountCode
{
get { return this.accountCode; }
set { this.accountCode = value; }
}
public string OldAccountCode
{
get { return this.oldAccountCode; }
set { this.oldAccountCode = value; }
}
public NewAccountCodeEvent(ManagerConnection source)
: base(source)
{
}
}
}