Database model for a trip.
More...
|
string? | Id [get, set] |
| The unique identifier of the trip.
|
|
string | RiderEmail = null! [get, set] |
| The email address of the rider who requested the trip.
|
|
string | DriverEmail = null! [get, set] |
| The email address of the driver who was selected for the trip.
|
|
string | Name = null! [get, set] |
| The name of the trip.
|
|
DateTime | StartTime [get, set] |
| The start time of the trip.
|
|
double | PickupLong [get, set] |
| The longitude of the pickup location, WGS84.
|
|
double | PickupLat [get, set] |
| The latitude of the pickup location, WGS84.
|
|
double | DestinationLong [get, set] |
| The longitude of the destination, WGS84.
|
|
double | DestinationLat [get, set] |
| The latitude of the destination, WGS84.
|
|
string | PickupAddress = null! [get, set] |
| The pickup address of the trip.
|
|
string | DestinationAddress = null! [get, set] |
| The destination address of the trip.
|
|
uint? | PartySize = null! [get, set] |
| The number of riders in the trip.
|
|
bool | RiderHasBeenRated = false [get, set] |
| Whether the driver has already rated the rider for this trip.
|
|
bool | DriverHasBeenRated = false [get, set] |
| Whether the rider has already rated the driver for this trip.
|
|
Database model for a trip.
The documentation for this class was generated from the following file:
- /Users/jacob/Documents/Projects/130-project/hagglehaul/hagglehaul.Server/Models/Trip.cs