mirror of
https://github.com/Theodor-Springmann-Stiftung/musenalm.git
synced 2025-10-28 16:55:32 +00:00
11 lines
277 B
Go
11 lines
277 B
Go
package dbmodels
|
|
|
|
type Exemplar struct {
|
|
Location string `json:",omitempty"`
|
|
Identifier string `json:",omitempty"`
|
|
Annotation string `json:",omitempty"`
|
|
Condition string `json:",omitempty"`
|
|
Owner string `json:",omitempty"`
|
|
Media string `json:",omitempty"`
|
|
}
|