1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-08-13 17:03:48 -04:00
k-9/src/com/fsck/k9/AccountStats.java
Jesse Vincent 3d090e9626 astyle
2011-01-31 23:45:23 +00:00

15 lines
295 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;
}