Initial Commit
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
namespace Model;
|
||||
|
||||
public class TravelTime
|
||||
{
|
||||
public TravelTime(int index, float value)
|
||||
{
|
||||
Index = index;
|
||||
Value = value;
|
||||
}
|
||||
|
||||
public int Index { get; set; }
|
||||
public float Value { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user