feat(TestAutomation) Harass Calculator tests and Search box style fix

This commit is contained in:
2022-04-25 16:43:45 -04:00
parent 43d7391df2
commit 7c10149ff3
14 changed files with 445 additions and 98 deletions
+2 -2
View File
@@ -2,12 +2,12 @@
public class TravelTime
{
public TravelTime(int index, int value)
public TravelTime(int index, float value)
{
Index = index;
Value = value;
}
public int Index { get; set; }
public int Value { get; set; }
public float Value { get; set; }
}