asternet/Asterisk.2013/Asterisk.NET/Manager/Event/ChannelReloadEvent.cs
2015-01-03 15:37:29 +00:00

26 lines
650 B
C#

namespace AsterNET.Manager.Event
{
public class ChannelReloadEvent : ManagerEvent
{
public ChannelReloadEvent(ManagerConnection source)
: base(source)
{
}
/// <summary>
/// For SIP peers this is "SIP".
/// </summary>
public string ChannelType { get; set; }
/// <summary>
/// Get/Set the name of the channel.
/// </summary>
public string ReloadReason { get; set; }
public int UserCount { get; set; }
public int PeerCount { get; set; }
public int RegistryCount { get; set; }
}
}