33 lines
715 B
Java
33 lines
715 B
Java
package com.ubt.jimu.base.entities;
|
|
|
|
import java.io.Serializable;
|
|
|
|
@Deprecated
|
|
/* loaded from: classes.dex */
|
|
public class Collect implements Serializable {
|
|
private static final long serialVersionUID = 1;
|
|
private String targetImage;
|
|
private String targetTitle;
|
|
|
|
public Collect(String str, String str2) {
|
|
this.targetTitle = str;
|
|
this.targetImage = str2;
|
|
}
|
|
|
|
public String getTargetImage() {
|
|
return this.targetImage;
|
|
}
|
|
|
|
public String getTargetTitle() {
|
|
return this.targetTitle;
|
|
}
|
|
|
|
public void setTargetImage(String str) {
|
|
this.targetImage = str;
|
|
}
|
|
|
|
public void setTargetTitle(String str) {
|
|
this.targetTitle = str;
|
|
}
|
|
}
|