Skip to content

Commit 604f1e7

Browse files
committed
Initial commit. (#339).
1 parent e7c70b9 commit 604f1e7

File tree

2 files changed

+33
-0
lines changed

2 files changed

+33
-0
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
package org.gitlab4j.api.models;
2+
3+
public class Email {
4+
5+
private Long id;
6+
private String email;
7+
8+
public Long getId() {
9+
return id;
10+
}
11+
12+
public void setId(Long id) {
13+
this.id = id;
14+
}
15+
16+
public String getEmail() {
17+
return email;
18+
}
19+
20+
public void setEmail(String email) {
21+
this.email = email;
22+
}
23+
}
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
[
2+
{
3+
"id": 1,
4+
"email": "email@example.com"
5+
},
6+
{
7+
"id": 3,
8+
"email": "email2@example.com"
9+
}
10+
]

0 commit comments

Comments
 (0)