package tim.prune.data; /** * Interface to hold constants for photo status */ public interface PhotoStatus { public static final byte NOT_CONNECTED = 0; public static final byte TAGGED = 1; public static final byte CONNECTED = 2; }