asternet/Asterisk.2013/Asterisk.NET/Manager/Action/ConfbridgeUnmuteAction.cs

31 lines
873 B
C#
Raw Normal View History

2015-01-03 15:37:29 +00:00
namespace AsterNET.Manager.Action
2014-01-03 16:39:46 +00:00
{
public class ConfbridgeUnmuteAction : ManagerAction
{
/// <summary>
2015-01-03 15:37:29 +00:00
/// Unmutes a specified user in a specified conference.
2014-01-03 16:39:46 +00:00
/// </summary>
public ConfbridgeUnmuteAction()
2015-01-03 15:37:29 +00:00
{
}
2014-01-03 16:39:46 +00:00
2015-01-03 15:37:29 +00:00
/// <summary>
/// Unmutes a specified user in a specified conference.
/// </summary>
/// <param name="conference"></param>
/// <param name="channel"></param>
2014-01-03 16:39:46 +00:00
public ConfbridgeUnmuteAction(string conference, string channel)
2015-01-03 15:37:29 +00:00
{
Conference = conference;
Channel = channel;
}
public string Conference { get; set; }
public string Channel { get; set; }
public override string Action
{
get { return "ConfbridgeUnmute"; }
}
2014-01-03 16:39:46 +00:00
}
2015-01-03 15:37:29 +00:00
}