mirror of
https://github.com/Neur0toxine/demo-web-service-go.git
synced 2025-02-09 01:39:25 +03:00
9 lines
194 B
Go
9 lines
194 B
Go
|
package model
|
||
|
|
||
|
type Author struct {
|
||
|
ID uint64 `json:"id"`
|
||
|
FirstName string `json:"firstName,omitempty"`
|
||
|
LastName string `json:"lastName,omitempty"`
|
||
|
Books []Book `json:"books"`
|
||
|
}
|