41 lines
1.3 KiB
C#
41 lines
1.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AsterNET.Manager.Event
|
|
{
|
|
/// <summary>
|
|
/// Raised as part of the ConfbridgeListRooms action response list.
|
|
///
|
|
/// 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>
|
|
public class ConfbridgeListRoomsEvent : AbstractConfbridgeEvent
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the parties.
|
|
/// </summary>
|
|
public int Parties { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the marked.
|
|
/// </summary>
|
|
public int Marked { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the locked.
|
|
/// </summary>
|
|
public string Locked { get; set; }
|
|
|
|
/// <summary>
|
|
/// Creates a new <see cref="ConfbridgeListRoomsEvent"/> using the given <see cref="ManagerConnection"/>.
|
|
/// </summary>
|
|
/// <param name="source"></param>
|
|
public ConfbridgeListRoomsEvent(ManagerConnection source)
|
|
: base(source)
|
|
{
|
|
}
|
|
}
|
|
}
|