task add following

This commit is contained in:
NikoXu 2025-02-17 09:58:41 +00:00
parent 73b4e9a2c9
commit 028147ab18

View File

@ -18,6 +18,8 @@ public class Task implements Serializable {
private String status;
private String following;
private String dir;
private List<TaskFile> files;
@ -104,4 +106,11 @@ public class Task implements Serializable {
this.completedLength = completedLength;
}
public String getFollowing() {
return following;
}
public void setFollowing(String following) {
this.following = following;
}
}