library/book/book.go

22 lines
372 B
Go
Raw Normal View History

2021-06-26 18:08:35 +00:00
package book
type Book struct {
ID int
Title string
Authors []string
SortAuthor string
ISBN10 string
ISBN13 string
Format string
Genre string
Publisher string
Series string
Volume string
Year string
Signed bool
Description string
Notes string
OnLoan string
CoverURL string
}