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

Kai Reinhard
31.45.2019 e24dcccdda9ae085534e0f16814486eb155aaa59
1
2
3
4
5
6
7
8
9
10
11
12
package de.micromata.borgbutler.json.borg;
 
import java.io.Serializable;
 
public class BorgEncryption implements Serializable {
    private static final long serialVersionUID = -4867140003118289187L;
    private String mode;
 
    public String getMode() {
        return this.mode;
    }
}