mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-10 11:35:11 -05:00
90fc3d2c8d
Display a short toast when attempting to open an unavailable account. Conflicts: res/values/strings.xml src/com/fsck/k9/activity/Accounts.java
15 lines
332 B
Java
15 lines
332 B
Java
/**
|
|
*
|
|
*/
|
|
package com.fsck.k9;
|
|
|
|
import java.io.Serializable;
|
|
|
|
public class AccountStats implements Serializable {
|
|
private static final long serialVersionUID = -5706839923710842234L;
|
|
public long size = -1;
|
|
public int unreadMessageCount = 0;
|
|
public int flaggedMessageCount = 0;
|
|
public boolean available = true;
|
|
}
|