Skip to content

Instantly share code, notes, and snippets.

@NaturalizerINA
Created January 26, 2018 18:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save NaturalizerINA/db4525e219f7db6f4abd86160f04e652 to your computer and use it in GitHub Desktop.
Save NaturalizerINA/db4525e219f7db6f4abd86160f04e652 to your computer and use it in GitHub Desktop.
package com.mukminullah.recyclerview;
/**
* Created by user on 26/01/18.
*/
public class B_list {
private String nama;
private String jurusan;
public B_list(String name, String jurusan) {
this.nama= name;
this.jurusan = jurusan;
}
public String getName() {
return nama;
}
public String getJurusan() {
return jurusan;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment