Skip to content

Commit 74af3f9

Browse files
committed
feat: Upload files montezbradley.sql and LibraryUserModel.java
1 parent 733fdc4 commit 74af3f9

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
package com.codedifferently.lesson28.models;
2+
3+
public class LibraryUserModel {
4+
private String id;
5+
private String email;
6+
private String firstName;
7+
private String lastName;
8+
private String password;
9+
private Integer phoneNUmber;
10+
11+
public LibraryUserModel(String id, String email, String firstName, String lastName, String password, Integer phoneNUmber) {
12+
this.id = id;
13+
this.email = email;
14+
this.firstName = firstName;
15+
this.lastName = lastName;
16+
this.password = password;
17+
this .phoneNUmber = phoneNUmber;
18+
}
19+
}

0 commit comments

Comments
 (0)