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

41 lines
1.3 KiB
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
{
2018-09-06 23:12:06 +00:00
/// <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
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>
/// Creates a new <see cref="ConfbridgeListRoomsEvent"/> using the given <see cref="ManagerConnection"/>.
/// </summary>
/// <param name="source"></param>
2014-01-03 16:39:46 +00:00
public ConfbridgeListRoomsEvent(ManagerConnection source)
: base(source)
{
}
}
}