Workbench

//User Model
{
	firstName:
	lastName:
	userName:
	email:
	dateCreated:
	userProfileImage
	books: []
}
//Book Model
{
	title: string
	author: string
	coverImage: string
	category: []string
	datePublished: date
	synopsis: [ string]
}