Skip to content

Commit 6dfd72b

Browse files
committed
completed 1 and 2
1 parent 2cda796 commit 6dfd72b

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
package com.booleanuk.core;
22

33
public class Author {
4+
private String name;
5+
private String contactInformation;
6+
private String website;
47

58
public Author(String name, String contactInformation, String website){
9+
this.name = name;
10+
this.contactInformation = contactInformation;
11+
this.website = website;
612
}
713
}

0 commit comments

Comments
 (0)