mirror of https://github.com/micromata/borgbackup-butler.git

Kai Reinhard
17.24.2021 1c9178997dd15d65b5f84b4870b3e54caa30ff61
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package de.micromata.borgbutler.json.borg;
 
import java.io.Serializable;
 
public class BorgCache implements Serializable {
    private static final long serialVersionUID = -1728825838475013561L;
    private String path;
    private BorgStats stats;
 
    public String getPath() {
        return this.path;
    }
 
    public BorgStats getStats() {
        return this.stats;
    }
}