mirror of
https://github.com/Neur0toxine/demo-web-service-go.git
synced 2025-02-08 17:29:23 +03:00
11 lines
234 B
Go
11 lines
234 B
Go
package model
|
|
|
|
import "time"
|
|
|
|
type Book struct {
|
|
ID uint64 `json:"id"`
|
|
Name string `json:"name,omitempty"`
|
|
PublicationDate time.Time `json:"publicationDate"`
|
|
Rate uint8 `json:"rate"`
|
|
}
|