Implemented search ui and screen for exploring repositories.

This commit is contained in:
M M Arif
2019-10-10 18:40:43 +05:00
parent 2fe175223c
commit d5cffddc72
7 changed files with 340 additions and 196 deletions

View File

@@ -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;
}
}