thunderbird-android/src/com/fsck/k9/AccountStats.java

13 lines
222 B
Java
Raw Normal View History

2010-04-16 18:34:36 +00:00
/**
*
2010-04-16 18:34:36 +00:00
*/
package com.fsck.k9;
import java.io.Serializable;
public class AccountStats implements Serializable
{
public long size = -1;
2010-04-16 18:34:36 +00:00
public int unreadMessageCount = 0;
public int flaggedMessageCount = 0;
}