-
Notifications
You must be signed in to change notification settings - Fork 260
/
Copy pathTripItem.cs
94 lines (71 loc) · 2.9 KB
/
TripItem.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
using System;
using System.Collections.Generic;
using Newtonsoft.Json;
namespace ServerlessMicroservices.Models
{
public enum TripTypes
{
Normal,
Demo
}
public class TripItem : BaseItem
{
[JsonProperty("code")]
public string Code { get; set; } = "";
// Included here ...just in case the passenger state changed ...this captures the passenger state at the time of the trip
[JsonProperty("passenger")]
public PassengerItem Passenger { get; set; } = new PassengerItem();
// Included here ...just in case the driver state changed ...this captures the driver state at the time of the trip
[JsonProperty("driver")]
public DriverItem Driver { get; set; } = null;
// Included here ...just in case the driver state changed ...this captures the available drivers state at the time of the trip
[JsonProperty("availableDrivers")]
public List<DriverItem> AvailableDrivers { get; set; } = new List<DriverItem>();
[JsonProperty("source")]
public TripLocation Source { get; set; } = new TripLocation();
[JsonProperty("destination")]
public TripLocation Destination { get; set; } = new TripLocation();
[JsonProperty("acceptDate")]
public DateTime? AcceptDate { get; set; } = null;
[JsonProperty("startDate")]
public DateTime StartDate { get; set; } = DateTime.Now;
[JsonProperty("endDate")]
public DateTime? EndDate { get; set; } = null;
// Computed values
[JsonProperty("duration")]
public double Duration { get; set; } = 0;
[JsonProperty("monitorIterations")]
public int MonitorIterations { get; set; } = 0;
[JsonProperty("isAborted")]
public bool IsAborted { get; set; } = false;
[JsonProperty("error")]
public string Error { get; set; } = "";
[JsonProperty("type")]
public TripTypes Type { get; set; } = TripTypes.Normal;
}
public class TripLocation
{
[JsonProperty("latitude")]
public double Latitude { get; set; } = 0;
[JsonProperty("longitude")]
public double Longitude { get; set; } = 0;
}
public class TripDemoState
{
[JsonProperty("code")]
public string Code { get; set; } = "";
[JsonProperty("source")]
public TripLocation Source { get; set; } = new TripLocation();
[JsonProperty("destination")]
public TripLocation Destination { get; set; } = new TripLocation();
[JsonProperty("routeLocations")]
public List<TripLocation> RouteLocations { get; set; } = new List<TripLocation>();
[JsonProperty("currentRouteIndex")]
public int CurrentRouteIndex { get; set; } = 0;
}
public class TripDriver
{
public string TripCode { get; set; } = "";
public string DriverCode { get; set; } = "";
}
}