With data-client added as library module (#3656)

* With data-client added as library module

* Fix build
This commit is contained in:
Vivek Maskara 2020-04-15 03:00:13 -07:00 committed by GitHub
parent 9ee04f3df4
commit 32ee0b4f9a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
258 changed files with 34820 additions and 2 deletions

View file

@ -0,0 +1,16 @@
package org.wikipedia.gallery;
import androidx.annotation.Nullable;
import com.google.gson.annotations.SerializedName;
public class ArtistInfo extends TextInfo {
@SuppressWarnings("unused,NullableProblems") @Nullable private String name;
@SuppressWarnings("unused,NullableProblems") @Nullable @SerializedName("user_page") private String userPage;
@Nullable
public String getName() {
return name;
}
}