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; // ww w. j ava2 s .c om public class Artist { protected int id; protected String name; public Artist(int artist_id, String artist_name) { this.id = artist_id; this.name = artist_name; } }