1
2
3
4
5
6
7
8
9
10
11
12
13
14
| package de.micromata.borgbutler.json.borg;
|
| import com.fasterxml.jackson.annotation.JsonProperty;
| import lombok.Getter;
|
| public class Repository {
| @Getter
| private String id;
| @Getter
| @JsonProperty("last_modified")
| private String lastModified;
| @Getter
| private String location;
| }
|
|