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