Initial commit
This commit is contained in:
34
sources/com/ubt/jimu/picture/PictureShowModel.java
Normal file
34
sources/com/ubt/jimu/picture/PictureShowModel.java
Normal file
@@ -0,0 +1,34 @@
|
||||
package com.ubt.jimu.picture;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/* loaded from: classes2.dex */
|
||||
public class PictureShowModel implements Serializable {
|
||||
private boolean isFullScreen = false;
|
||||
private String text;
|
||||
private String url;
|
||||
|
||||
public String getText() {
|
||||
return this.text;
|
||||
}
|
||||
|
||||
public String getUrl() {
|
||||
return this.url;
|
||||
}
|
||||
|
||||
public boolean isFullScreen() {
|
||||
return this.isFullScreen;
|
||||
}
|
||||
|
||||
public void setFullScreen(boolean z) {
|
||||
this.isFullScreen = z;
|
||||
}
|
||||
|
||||
public void setText(String str) {
|
||||
this.text = str;
|
||||
}
|
||||
|
||||
public void setUrl(String str) {
|
||||
this.url = str;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user