namespace AsterNET.Manager.Action { public class ConfbridgeLockAction : ManagerAction { /// /// Locks a specified conference. /// public ConfbridgeLockAction() { } /// /// Locks a specified conference. /// /// public ConfbridgeLockAction(string conference) { Conference = conference; } public string Conference { get; set; } public override string Action { get { return "ConfbridgeLock"; } } } }