using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace AsterNET.Manager.Action { public class ConfbridgeSetSingleVideoSrcAction : ManagerAction { public string Conference { get; set; } public string Channel { get; set; } public override string Action { get { return "ConfbridgeSetSingleVideoSrc"; } } /// /// Stops recording a specified conference. /// public ConfbridgeSetSingleVideoSrcAction() { } /// /// Stops recording a specified conference. /// /// public ConfbridgeSetSingleVideoSrcAction(string conference, string channel) { this.Conference = conference; this.Channel = channel; } } }