Add StationEntry type
This commit is contained in:
parent
5491671b8b
commit
f85646ac1a
@ -1,11 +1,18 @@
|
||||
package database
|
||||
|
||||
type CorpusEntry struct {
|
||||
CRS string `json:"3ALPHA"`
|
||||
NLC int `json:"NLC"`
|
||||
NLCDESC string `json:"NLCDESC"`
|
||||
NLCDESC16 string `json:"NLCDESC16"`
|
||||
STANOX string `json:"STANOX"`
|
||||
TIPLOC string `json:"TIPLOC"`
|
||||
UIC string `json:"UIC"`
|
||||
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"`
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user