asternet/Asterisk.2013/Asterisk.NET/Manager/Action/ConfbridgeLockAction.cs

28 lines
684 B
C#
Raw Normal View History

2015-01-03 15:37:29 +00:00
namespace AsterNET.Manager.Action
2014-01-03 16:39:46 +00:00
{
public class ConfbridgeLockAction : ManagerAction
{
/// <summary>
2015-01-03 15:37:29 +00:00
/// Locks a specified conference.
2014-01-03 16:39:46 +00:00
/// </summary>
public ConfbridgeLockAction()
2015-01-03 15:37:29 +00:00
{
}
2014-01-03 16:39:46 +00:00
2015-01-03 15:37:29 +00:00
/// <summary>
/// Locks a specified conference.
/// </summary>
/// <param name="conference"></param>
2014-01-03 16:39:46 +00:00
public ConfbridgeLockAction(string conference)
2015-01-03 15:37:29 +00:00
{
Conference = conference;
}
public string Conference { get; set; }
public override string Action
{
get { return "ConfbridgeLock"; }
}
2014-01-03 16:39:46 +00:00
}
2015-01-03 15:37:29 +00:00
}