feat(BuildCalc) Wait To button and some WIP code
This commit is contained in:
+4
-6
@@ -1,15 +1,13 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace Model;
|
||||
namespace Model;
|
||||
|
||||
public class TravelTime
|
||||
{
|
||||
public int Index { get; set; } = 0;
|
||||
public int Value { get; set; } = 0;
|
||||
|
||||
public TravelTime(int index, int value)
|
||||
{
|
||||
Index = index;
|
||||
Value = value;
|
||||
}
|
||||
|
||||
public int Index { get; set; }
|
||||
public int Value { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user