mirror of
https://github.com/Neur0toxine/demo-web-service-go.git
synced 2025-02-09 01:39:25 +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"`
|
||
|
}
|