2015-01-03 15:37:29 +00:00
|
|
|
|
namespace AsterNET.Manager.Action
|
2014-01-03 16:39:46 +00:00
|
|
|
|
{
|
|
|
|
|
public class ConfbridgeKickAction : ManagerAction
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
2015-01-03 15:37:29 +00:00
|
|
|
|
/// Removes a specified user from a specified conference.
|
2014-01-03 16:39:46 +00:00
|
|
|
|
/// </summary>
|
|
|
|
|
public ConfbridgeKickAction()
|
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>
|
|
|
|
|
/// Removes a specified user from a specified conference.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="conference"></param>
|
|
|
|
|
/// <param name="channel"></param>
|
2014-01-03 16:39:46 +00:00
|
|
|
|
public ConfbridgeKickAction(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 "ConfbridgeKick"; }
|
|
|
|
|
}
|
2014-01-03 16:39:46 +00:00
|
|
|
|
}
|
2015-01-03 15:37:29 +00:00
|
|
|
|
}
|