mirror of
https://github.com/commons-app/apps-android-commons.git
synced 2025-10-27 04:43:54 +01:00
With data-client added as library module (#3656)
* With data-client added as library module * Fix build
This commit is contained in:
parent
9ee04f3df4
commit
32ee0b4f9a
258 changed files with 34820 additions and 2 deletions
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue