Back to project page push-music-lib-droid.
The source code is released under:
MIT License
If you think the Android project push-music-lib-droid listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.mhor.pushmusiclib.model; /*from w w w .j ava 2 s . c om*/ public class Device { protected String deviceName; protected String deviceId; protected String token; public Device(String deviceName, String deviceId, String token) { this.deviceName = deviceName; this.deviceId = deviceId; this.token = token; } }