package com.sdsmdg.harjot.MusicDNA.models; /** * Created by Harjot on 09-May-16. */ public class LocalTrack { private long id; private String title; private String artist; private String album; private String path; private long duration; public String getAlbum() { return album; } public void setAlbum(String album) { this.album = album; } public String getPath() { return path; } public void setPath(String path) { this.path = path; } public long getDuration() { return duration; } public void setDuration(long duration) { this.duration = duration; } public LocalTrack(long id, String title, String artist, String album, String path, long duration) { this.id = id; this.title = title; this.artist = artist; this.album = album; this.path = path; this.duration = duration; } public long getId() { return id; } public void setId(long id) { this.id = id; } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public String getArtist() { return artist; } public void setArtist(String artist) { this.artist = artist; } }