using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Asterisk.NET.Manager.Action
{
public class ConfbridgeUnlockAction : ManagerAction
{
public string Conference { get; set; }
public override string Action
{
get { return "ConfbridgeUnlock"; }
}
///
/// Unlocks a specified conference.
///
public ConfbridgeUnlockAction()
{ }
///
/// Unlocks a specified conference.
///
///
public ConfbridgeUnlockAction(string conference)
{
this.Conference = conference;
}
}
}