using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace POCDistance.Models
|
|
{
|
|
public class DistanceModel
|
|
{
|
|
public string Distance { get; set; }
|
|
public string Unit { get; set; }
|
|
public string FromCity { get; set; }
|
|
public string ToCity { get; set; }
|
|
}
|
|
}
|