ApiHttpClient增加AddServer,用于多次新增服务端地址
智能大石头 authored at 2025-12-17 17:04:22
324.00 B
X
using System;

namespace NewLife.Yun
{
    /// <summary>驾车距离和时间</summary>
    public class Driving
    {
        /// <summary>距离。单位米</summary>
        public Int32 Distance { get; set; }

        /// <summary>路线耗时。单位秒</summary>
        public Int32 Duration { get; set; }
    }
}