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

26 lines
687 B
C#
Raw Normal View History

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 AbstractConfbridgeEvent : ManagerEvent
{
/// <summary>
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+10+Documentation" target="_blank" alt="Asterisk 10 wiki docs">Asterisk 10</see>.
2014-01-03 16:39:46 +00:00
/// </summary>
public string Conference { get; set; }
public AbstractConfbridgeEvent()
: base()
{ }
public AbstractConfbridgeEvent(ManagerConnection source)
: base(source)
{
}
2014-01-03 16:39:46 +00:00
}
}