16 lines
351 B
C#
Raw Normal View History

2022-02-10 00:44:02 +05:30
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; }
}
}