31 lines
869 B
C#
31 lines
869 B
C#
namespace AsterNET.Manager.Action
|
|
{
|
|
public class ConfbridgeKickAction : ManagerAction
|
|
{
|
|
/// <summary>
|
|
/// Removes a specified user from a specified conference.
|
|
/// </summary>
|
|
public ConfbridgeKickAction()
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// Removes a specified user from a specified conference.
|
|
/// </summary>
|
|
/// <param name="conference"></param>
|
|
/// <param name="channel"></param>
|
|
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"; }
|
|
}
|
|
}
|
|
} |