using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AsterNET.Manager.Event
{
///
/// Raised as part of the ConfbridgeListRooms action response list.
/// See https://wiki.asterisk.org/wiki/display/AST/Asterisk+16+ManagerEvent_ConfbridgeList
///
public class ConfbridgeListRoomsEvent : AbstractConfbridgeEvent
{
///
/// Gets or sets the parties.
///
public int Parties { get; set; }
///
/// Gets or sets the marked.
///
public int Marked { get; set; }
///
/// Gets or sets the locked.
///
public string Locked { get; set; }
///
/// Creates a new .
///
///
public ConfbridgeListRoomsEvent(ManagerConnection source)
: base(source)
{
}
}
}