17 lines
374 B
C#
17 lines
374 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace TIAMWebApp.Shared.Application.Models.PageModels
|
|
{
|
|
public class RouteCalculationModel
|
|
{
|
|
public string Origin { get; set; }
|
|
public string Destination { get; set; }
|
|
public DateTime TravelTime { get; set; }
|
|
|
|
}
|
|
}
|