doofmann
This commit is contained in:
parent
1bb953789a
commit
77efe9973d
@ -1,55 +0,0 @@
|
|||||||
using System;
|
|
||||||
|
|
||||||
namespace MailServer.IMAP.Server
|
|
||||||
{
|
|
||||||
/// <summary>
|
|
||||||
/// Summary description for SharedRootFolders_EventArgs.
|
|
||||||
/// </summary>
|
|
||||||
public class SharedRootFolders_EventArgs
|
|
||||||
{
|
|
||||||
private IMAP_Session m_pSession = null;
|
|
||||||
private string[] m_SharedRootFolders = null;
|
|
||||||
private string[] m_PublicRootFolders = null;
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Default constructor.
|
|
||||||
/// </summary>
|
|
||||||
public SharedRootFolders_EventArgs(IMAP_Session session)
|
|
||||||
{
|
|
||||||
m_pSession = session;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
#region Properties Implementation
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Gets reference to smtp session.
|
|
||||||
/// </summary>
|
|
||||||
public IMAP_Session Session
|
|
||||||
{
|
|
||||||
get { return m_pSession; }
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Gets or sets users shared root folders. Ususaly there is only one root folder 'Shared Folders'.
|
|
||||||
/// </summary>
|
|
||||||
public string[] SharedRootFolders
|
|
||||||
{
|
|
||||||
get { return m_SharedRootFolders; }
|
|
||||||
|
|
||||||
set { m_SharedRootFolders = value; }
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Gets or sets public root folders. Ususaly there is only one root folder 'Public Folders'.
|
|
||||||
/// </summary>
|
|
||||||
public string[] PublicRootFolders
|
|
||||||
{
|
|
||||||
get { return m_PublicRootFolders; }
|
|
||||||
|
|
||||||
set { m_PublicRootFolders = value; }
|
|
||||||
}
|
|
||||||
|
|
||||||
#endregion
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user