1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
| package tech.powerjob.common.model;
|
| import lombok.Data;
|
| /**
| * The class for Git Repository info.
| *
| * @author tjq
| * @since 2020/5/17
| */
| @Data
| public class GitRepoInfo {
| /**
| * Address of Git repository.
| */
| private String repo;
| /**
| * Name of the branch.
| */
| private String branch;
| /**
| * username of Git.
| */
| private String username;
| /**
| * Password of Git.
| */
| private String password;
| }
|
|