2014-01-03 16:39:46 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
2014-01-08 14:16:39 +00:00
|
|
|
|
namespace AsterNET.Manager.Event
|
2014-01-03 16:39:46 +00:00
|
|
|
|
{
|
|
|
|
|
public class ConfbridgeLeaveEvent : AbstractConfbridgeEvent
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
///
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string CallerIDnum { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
///
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string CallerIDname { get; set; }
|
2014-01-09 10:09:40 +00:00
|
|
|
|
|
|
|
|
|
public ConfbridgeLeaveEvent(ManagerConnection source)
|
|
|
|
|
: base(source)
|
|
|
|
|
{
|
|
|
|
|
}
|
2014-01-03 16:39:46 +00:00
|
|
|
|
}
|
|
|
|
|
}
|