namespace AsterNET.Manager.Response
{
///
/// A MailboxStatusResponse is sent in response to a MailboxStatusAction and indicates if a set
/// of mailboxes contains waiting messages.
///
///
public class MailboxStatusResponse : ManagerResponse
{
/// The name of the mailbox.
private string mailbox;
/// Indicates if there are new messages waiting in the given set of mailboxes.
private bool waiting;
///
/// Get/Set the names of the mailboxes, separated by ",".
///
public string Mailbox
{
get { return mailbox; }
set { this.mailbox = value; }
}
///
/// Get/Set true if at least one of the given mailboxes contains new messages, false otherwise.
///
public bool Waiting
{
get { return waiting; }
set { this.waiting = value; }
}
}
}