From b75b5a3d1a3bf001923d49923dcebee95ba2327e Mon Sep 17 00:00:00 2001 From: Vitaly Takmazov Date: Thu, 29 Jun 2017 17:09:49 +0300 Subject: notifications and configurations refactoring --- .../main/java/com/juick/DeviceRegistration.java | 30 ++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 juick-core/src/main/java/com/juick/DeviceRegistration.java (limited to 'juick-core/src/main/java/com/juick/DeviceRegistration.java') diff --git a/juick-core/src/main/java/com/juick/DeviceRegistration.java b/juick-core/src/main/java/com/juick/DeviceRegistration.java new file mode 100644 index 00000000..9b6f1d4b --- /dev/null +++ b/juick-core/src/main/java/com/juick/DeviceRegistration.java @@ -0,0 +1,30 @@ +package com.juick; + +/** + * Created by vitalyster on 22.11.2016. + */ +public class DeviceRegistration { + private String type; + private String token; + + public DeviceRegistration(String type, String token) { + this.type = type; + this.token = token; + } + + public String getType() { + return type; + } + + public void setType(String type) { + this.type = type; + } + + public String getToken() { + return token; + } + + public void setToken(String token) { + this.token = token; + } +} -- cgit v1.2.3