You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
MpPreview/app/src/main/java/com/xypower/mppreview/bean/PngPhotoBean.java

24 lines
379 B
Java

package com.xypower.mppreview.bean;
6 months ago
public class PngPhotoBean {
private long etime;
private String path;
6 months ago
public long getEtime() {
return etime;
}
6 months ago
public void setEtime(long etime) {
this.etime = etime;
}
6 months ago
public String getPath() {
return path;
}
public void setPath(String path) {
this.path = path;
}
6 months ago
}