StickerPacks.java
689 Bytes
package com.bitstrips.imoji.models;
import com.google.common.collect.ImmutableList;
import com.google.gson.annotations.SerializedName;
import java.io.Serializable;
import java.util.List;
public class StickerPacks
implements Serializable
{
public static final List<String> SUPERPACK_TAGS = ImmutableList.of("popular", "greeting", "affection", "positive", "negative", "occasions");
@SerializedName("packs")
List<StickerPack> a;
public List<StickerPack> get()
{
return this.a;
}
}
/* Location: /home/merong/decompile/hackery-dex2jar.jar!/com/bitstrips/imoji/models/StickerPacks.class
* Java compiler version: 6 (50.0)
* JD-Core Version: 0.7.1
*/