Implemented search ui and screen for exploring repositories.
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
package org.mian.gitnex.models;
|
||||
|
||||
import java.util.ArrayList;
|
||||
|
||||
/**
|
||||
* Author M M Arif
|
||||
*/
|
||||
|
||||
public class ExploreRepositories {
|
||||
|
||||
private ArrayList<UserRepositories> data;
|
||||
private Boolean ok;
|
||||
|
||||
public ArrayList<UserRepositories> getSearchedData() {
|
||||
return data;
|
||||
}
|
||||
|
||||
public Boolean getOk() {
|
||||
return ok;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user