35 lines
1.1 KiB
C#
35 lines
1.1 KiB
C#
namespace AsterNET.Manager.Event
|
|
{
|
|
/// <summary>
|
|
/// A MessageWaitingEvent is triggered when someone leaves voicemail.<br />
|
|
/// It is implemented in apps/app_voicemail.c
|
|
/// </summary>
|
|
public class MessageWaitingEvent : ManagerEvent
|
|
{
|
|
public MessageWaitingEvent(ManagerConnection source)
|
|
: base(source)
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// Get/Set the name of the mailbox that has waiting messages.<br />
|
|
/// The name of the mailbox is of the form numberOfMailbox@context, e.g. 1234@default.
|
|
/// </summary>
|
|
public string Mailbox { get; set; }
|
|
|
|
/// <summary>
|
|
/// Get/Set the number of new messages in the mailbox.
|
|
/// </summary>
|
|
public int Waiting { get; set; }
|
|
|
|
/// <summary>
|
|
/// Get/Set the number of new messages in this mailbox.
|
|
/// </summary>
|
|
public int New { get; set; }
|
|
|
|
/// <summary>
|
|
/// Get/Set the number of old messages in this mailbox.
|
|
/// </summary>
|
|
public int Old { get; set; }
|
|
}
|
|
} |