namespace AsterNET.Manager.Action { public class ConfbridgeMuteAction : ManagerAction { /// /// Mutes a specified user in a specified conference. /// public ConfbridgeMuteAction() { } /// /// Mutes a specified user in a specified conference. /// /// /// public ConfbridgeMuteAction(string conference, string channel) { Conference = conference; Channel = channel; } public string Conference { get; set; } public string Channel { get; set; } public override string Action { get { return "ConfbridgeMute"; } } } }