namespace AsterNET.Manager.Action { public class ConfbridgeKickAction : ManagerAction { /// /// Removes a specified user from a specified conference. /// public ConfbridgeKickAction() { } /// /// Removes a specified user from a specified conference. /// /// /// public ConfbridgeKickAction(string conference, string channel) { Conference = conference; Channel = channel; } public string Conference { get; set; } public string Channel { get; set; } public override string Action { get { return "ConfbridgeKick"; } } } }