Skip to content

Instantly share code, notes, and snippets.

View devAseemSharma's full-sized avatar
🎯
Focusing

Aseem Sharma devAseemSharma

🎯
Focusing
View GitHub Profile
@devAseemSharma
devAseemSharma / Artist.java
Last active March 22, 2018 15:22
Artist Model Class with Parcelable
public class Artist implements Parcelable
{
private String artistName;
private String albumName;
private String imgAlbum;
private String artistTitle;
public final static Parcelable.Creator<Artist> CREATOR = new Creator<Artist>() {