diff options
author | Clyhtsuriva <aimeric@adjutor.xyz> | 2021-02-19 18:30:06 +0100 |
---|---|---|
committer | Clyhtsuriva <aimeric@adjutor.xyz> | 2021-02-19 18:30:06 +0100 |
commit | c8a84acbec91678c14e23d8dfed20f26d9d0361e (patch) | |
tree | e6067e89a71ac86a677150680476633c518da5f0 /app/src/main/java/xyz/adjutor/aniki/RestTopMangaResponse.kt | |
parent | cd37b807397b50b8e9c45389fc04679998e628db (diff) |
Moving TopManga files into their own subdir
Diffstat (limited to 'app/src/main/java/xyz/adjutor/aniki/RestTopMangaResponse.kt')
-rw-r--r-- | app/src/main/java/xyz/adjutor/aniki/RestTopMangaResponse.kt | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/app/src/main/java/xyz/adjutor/aniki/RestTopMangaResponse.kt b/app/src/main/java/xyz/adjutor/aniki/RestTopMangaResponse.kt deleted file mode 100644 index 0a7ebc8..0000000 --- a/app/src/main/java/xyz/adjutor/aniki/RestTopMangaResponse.kt +++ /dev/null @@ -1,19 +0,0 @@ -package xyz.adjutor.aniki - -import com.google.gson.annotations.SerializedName - -class RestTopMangaResponse { - - @SerializedName("request_hash") - var request_hash: String? = null - @SerializedName("request_cached") - var request_cached: Boolean? = null - @SerializedName("request_cached_expiry") - var request_cached_expiry: Int? = null - @SerializedName("top") - var top: List<TopManga>? = null - - fun getResults(): List<TopManga> { - return top!! - } -}
\ No newline at end of file |