Exemplare -> Items

This commit is contained in:
Simon Martens
2025-02-09 18:24:09 +01:00
parent 52239727d4
commit 28b3833228
5 changed files with 51 additions and 13 deletions

10
dbmodels/common.go Normal file
View File

@@ -0,0 +1,10 @@
package dbmodels
type AnnotatioNotes struct {
Annotation string `json:",omitempty" db:"annotation"`
Notes string `json:",omitempty" db:"edit_comment"`
}
type FieldMetaData struct {
MetaData MetaData `json:",omitempty" db:"edit_fielddata"`
}