22 lines
688 B
Go
22 lines
688 B
Go
package book
|
|
|
|
type Book struct {
|
|
ID int `json:"-"`
|
|
Title string `json:"title"`
|
|
Authors []string `json:"authors"`
|
|
SortAuthor string `json:"sortAuthor"`
|
|
ISBN10 string `json:"isbn-10"`
|
|
ISBN13 string `json:"isbn-13"`
|
|
Format string `json:"format"`
|
|
Genre string `json:"genre"`
|
|
Publisher string `json:"publisher"`
|
|
Series string `json:"series"`
|
|
Volume string `json:"volume"`
|
|
Year string `json:"year"`
|
|
Signed bool `json:"signed"`
|
|
Description string `json:"description"`
|
|
Notes string `json:"notes"`
|
|
OnLoan string `json:"onLoan"`
|
|
CoverURL string `json:"coverURL"`
|
|
}
|