mirror of
https://github.com/Theodor-Springmann-Stiftung/musenalm.git
synced 2025-10-29 01:05:32 +00:00
11 lines
251 B
Go
11 lines
251 B
Go
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"`
|
|
}
|