go-types/pkg/database/corpus.go

19 lines
551 B
Go

package database
type CorpusEntry struct {
CRS string `json:"3ALPHA,omitempty"`
NLC int `json:"NLC,omitempty"`
NLCDESC string `json:"NLCDESC,omitempty"`
NLCDESC16 string `json:"NLCDESC16,omitempty"`
STANOX string `json:"STANOX,omitempty"`
TIPLOC string `json:"TIPLOC,omitempty"`
UIC string `json:"UIC,omitempty"`
}
type StationEntry struct {
CRS string `json:"3ALPHA,omitempty"`
NLCDESC string `json:"NLCDESC,omitempty"`
STANOX string `json:"STANOX,omitempty"`
TIPLOC string `json:"TIPLOC,omitempty"`
}