initial planning

This commit is contained in:
2021-06-26 14:08:35 -04:00
parent 84a523f2f8
commit da239cf9ad
18 changed files with 1048 additions and 2 deletions

21
book/book.go Normal file
View File

@@ -0,0 +1,21 @@
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
}