Files
clean-architecture-go-v2/domain/entity/book.go
T

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
}