mirror of
https://github.com/Theodor-Springmann-Stiftung/musenalm.git
synced 2025-10-29 01:05:32 +00:00
11 lines
280 B
Go
11 lines
280 B
Go
package dbmodels
|
|
|
|
type Deprecated struct {
|
|
Reihentitel string `json:"reihentitel"`
|
|
Norm string `json:"norm"`
|
|
BiblioID int `json:"biblio"`
|
|
Status []string `json:"status"`
|
|
Gesichtet bool `json:"gesichtet"`
|
|
Erfasst bool `json:"erfasst"`
|
|
}
|