mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-24 10:22:15 -05:00
5bd24fe425
Fixes Issue 1431 Present flagged message count inside a star, matching the visual presentation on individual messages. Provide display of unread and flagged message counts for canned searches. Perhaps the message counts for searches and account size display should be defeatable for improved speed.
11 lines
242 B
Java
11 lines
242 B
Java
package com.fsck.k9;
|
|
|
|
public interface BaseAccount
|
|
{
|
|
public String getEmail();
|
|
public void setEmail(String email);
|
|
public String getDescription();
|
|
public void setDescription(String description);
|
|
public String getUuid();
|
|
}
|