diff options
author | Julien Dessaux | 2021-05-12 22:58:22 +0200 |
---|---|---|
committer | Julien Dessaux | 2021-05-12 22:58:22 +0200 |
commit | 1475b95491be100927460bc17a97bfc85ab51d3c (patch) | |
tree | 657f17d6d3bbcb296f2808a021ee629fc9e0d248 /pkg/model | |
parent | Fixed sessions schema (diff) | |
download | trains-1475b95491be100927460bc17a97bfc85ab51d3c.tar.gz trains-1475b95491be100927460bc17a97bfc85ab51d3c.tar.bz2 trains-1475b95491be100927460bc17a97bfc85ab51d3c.zip |
Added train_stops to schema
Diffstat (limited to 'pkg/model')
-rw-r--r-- | pkg/model/train_stop.go | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/pkg/model/train_stop.go b/pkg/model/train_stop.go new file mode 100644 index 0000000..e5b1f6e --- /dev/null +++ b/pkg/model/train_stop.go @@ -0,0 +1,6 @@ +package model + +type TrainStop struct { + Id string + Name string +} |