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
{
2018-09-06 23:12:06 +00:00
/// <summary>
2018-09-21 22:12:58 +00:00
/// Raised as part of the ConfbridgeListRooms action response list.<br/>
2018-09-06 23:12:06 +00:00
/// See <see target="_blank" href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+16+ManagerEvent_ConfbridgeList">https://wiki.asterisk.org/wiki/display/AST/Asterisk+16+ManagerEvent_ConfbridgeList</see>
/// </summary>
2014-01-09 10:09:40 +00:00
public class ConfbridgeListRoomsEvent : AbstractConfbridgeEvent
2014-01-03 16:39:46 +00:00
{
/// <summary>
2018-09-06 23:12:06 +00:00
/// Gets or sets the parties.
2014-01-03 16:39:46 +00:00
/// </summary>
public int Parties { get ; set ; }
/// <summary>
2018-09-06 23:12:06 +00:00
/// Gets or sets the marked.
2014-01-03 16:39:46 +00:00
/// </summary>
public int Marked { get ; set ; }
/// <summary>
2018-09-06 23:12:06 +00:00
/// Gets or sets the locked.
2014-01-03 16:39:46 +00:00
/// </summary>
public string Locked { get ; set ; }
2018-09-06 23:12:06 +00:00
/// <summary>
2018-09-21 22:12:58 +00:00
/// Creates a new <see cref="ConfbridgeListRoomsEvent"/>.
2018-09-06 23:12:06 +00:00
/// </summary>
2018-09-21 22:12:58 +00:00
/// <param name="source"><see cref="ManagerConnection"/></param>
2014-01-03 16:39:46 +00:00
public ConfbridgeListRoomsEvent ( ManagerConnection source )
: base ( source )
{
}
}
}