mirror of
https://github.com/CappielloAntonio/tempo.git
synced 2026-02-01 15:03:37 +00:00
Made attributes of model classes private
This commit is contained in:
@@ -6,10 +6,10 @@ import android.os.Parcelable;
|
||||
import androidx.annotation.NonNull;
|
||||
|
||||
public class Genre implements Parcelable {
|
||||
public String id;
|
||||
public String name;
|
||||
public int songCount;
|
||||
public int albumCount;
|
||||
private String id;
|
||||
private String name;
|
||||
private int songCount;
|
||||
private int albumCount;
|
||||
|
||||
public Genre(com.cappielloantonio.play.subsonic.models.Genre genre) {
|
||||
this.id = genre.getGenre();
|
||||
|
||||
Reference in New Issue
Block a user