Much of the API between the local and net stores had to be reworked for consistency as well as planning ahead for how messages will be retrieved and stored efficiently. This work also attempts to keep in mind that other mail sources (POP, etc.) may be required in the future, and hopefully can be added without major rework.
14 lines
397 B
Vala
14 lines
397 B
Vala
/* Copyright 2011 Yorba Foundation
|
|
*
|
|
* This software is licensed under the GNU Lesser General Public License
|
|
* (version 2.1 or later). See the COPYING file in this distribution.
|
|
*/
|
|
|
|
public class Geary.Imap.EmailProperties : Geary.EmailProperties {
|
|
public MessageFlags flags { get; private set; }
|
|
|
|
public EmailProperties(MessageFlags flags) {
|
|
this.flags = flags;
|
|
}
|
|
}
|
|
|