using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OASystem.Domain.ViewModels.SmallFun
{
///
/// google地图 返回 时间and距离 View
///
public class DistanceAndTimeView
{
///
/// 时间文本
///
public string? DurationText { get; set; }
///
/// 时间值
///
public int? DurationValue { get; set; }
///
/// 距离文本
///
public string? DistanceText { get; set; }
///
/// 距离值
///
public int? DistanceValue { get; set; }
}
}