-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
228 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
// | ||
// Leg.swift | ||
// Arrival-iOS2 | ||
// | ||
// Created by Ronan Furuta on 2/8/20. | ||
// Copyright © 2020 Stomp Rocket. All rights reserved. | ||
// | ||
|
||
import Foundation | ||
struct Leg: Identifiable, Codable { | ||
var id = UUID() | ||
var order: Int | ||
var origin: String | ||
var destination: String | ||
var originTime: String | ||
var destinationTime: String | ||
var line: String | ||
var trainDestination: String | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
// | ||
// Trip.swift | ||
// Arrival-iOS2 | ||
// | ||
// Created by Ronan Furuta on 2/8/20. | ||
// Copyright © 2020 Stomp Rocket. All rights reserved. | ||
// | ||
|
||
import Foundation | ||
struct TripInfo: Identifiable, Codable { | ||
var id = UUID() | ||
var origin: String | ||
var destination: String | ||
var legs: [Leg] | ||
var originTime: String | ||
var destinatonTime: String | ||
var tripTIme: Double | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.