2015-01-03 15:37:29 +00:00
|
|
|
|
namespace AsterNET.Manager.Action
|
2014-01-03 16:39:46 +00:00
|
|
|
|
{
|
|
|
|
|
public class ConfbridgeStopRecordAction : ManagerAction
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
2015-01-03 15:37:29 +00:00
|
|
|
|
/// Stops recording a specified conference.
|
2014-01-03 16:39:46 +00:00
|
|
|
|
/// </summary>
|
|
|
|
|
public ConfbridgeStopRecordAction()
|
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>
|
|
|
|
|
/// Stops recording a specified conference.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="conference"></param>
|
2014-01-03 16:39:46 +00:00
|
|
|
|
public ConfbridgeStopRecordAction(string conference)
|
2015-01-03 15:37:29 +00:00
|
|
|
|
{
|
|
|
|
|
Conference = conference;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public string Conference { get; set; }
|
|
|
|
|
|
|
|
|
|
public override string Action
|
|
|
|
|
{
|
|
|
|
|
get { return "ConfbridgeStopRecord"; }
|
|
|
|
|
}
|
2014-01-03 16:39:46 +00:00
|
|
|
|
}
|
2015-01-03 15:37:29 +00:00
|
|
|
|
}
|