asternet/Asterisk.2013/Asterisk.NET/Manager/Event/ChannelReloadEvent.cs

26 lines
650 B
C#
Raw Normal View History

2014-01-08 14:16:39 +00:00
namespace AsterNET.Manager.Event
{
2015-01-03 15:37:29 +00:00
public class ChannelReloadEvent : ManagerEvent
{
public ChannelReloadEvent(ManagerConnection source)
: base(source)
{
}
2015-01-03 15:37:29 +00:00
/// <summary>
/// For SIP peers this is "SIP".
/// </summary>
public string ChannelType { get; set; }
2015-01-03 15:37:29 +00:00
/// <summary>
/// Get/Set the name of the channel.
/// </summary>
public string ReloadReason { get; set; }
2015-01-03 15:37:29 +00:00
public int UserCount { get; set; }
2015-01-03 15:37:29 +00:00
public int PeerCount { get; set; }
2015-01-03 15:37:29 +00:00
public int RegistryCount { get; set; }
}
}