1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-12-25 17:18:50 -05:00

Needed for prior commits

This commit is contained in:
Daniel Applebaum 2010-04-16 18:34:36 +00:00
parent 5e30d5a784
commit 7cf0ec7327

View File

@ -0,0 +1,13 @@
/**
*
*/
package com.fsck.k9;
import java.io.Serializable;
public class AccountStats implements Serializable
{
public long size = 0;
public int unreadMessageCount = 0;
public int flaggedMessageCount = 0;
}