17 lines
191 B
Go
17 lines
191 B
Go
package entity
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
//Book data
|
|
type Book struct {
|
|
ID ID
|
|
Title string
|
|
Author string
|
|
Pages int
|
|
Quantity int
|
|
CreatedAt time.Time
|
|
UpdatedAt time.Time
|
|
}
|