asternet/Asterisk.2013/Asterisk.NET/Manager/Event/NewAccountCodeEvent.cs

28 lines
510 B
C#
Raw Normal View History

using System;
2014-01-08 14:16:39 +00:00
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)
{
}
}
}