add missing file

master
Andreas Shimokawa 2016-06-24 14:57:01 +02:00
parent 659165fa4c
commit 181df7311a
1 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,10 @@
package nodomain.freeyourgadget.gadgetbridge.model;
public class CannedMessagesSpec {
public static final byte TYPE_GENERIC = 0;
public static final byte TYPE_MISSEDCALLS = 1;
public static final byte TYPE_NEWSMS = 2;
public int type;
public String[] cannedMessages;
}