24 lines
472 B
Java
24 lines
472 B
Java
package com.ubt.jimu.blockly.bean;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class SuperFilePath {
|
|
public String fileUrl;
|
|
public String localFilePath;
|
|
|
|
public String getFileUrl() {
|
|
return this.fileUrl;
|
|
}
|
|
|
|
public String getLocalFilePath() {
|
|
return this.localFilePath;
|
|
}
|
|
|
|
public void setFileUrl(String str) {
|
|
this.fileUrl = str;
|
|
}
|
|
|
|
public void setLocalFilePath(String str) {
|
|
this.localFilePath = str;
|
|
}
|
|
}
|