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; } }