LSFE/LSFE.MobApp/DTO/AddressCache.cs
2026-07-30 10:31:04 +08:00

17 lines
364 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LSFE.MobApp.DTO
{
public class AddressCache
{
public double Lat { get; set; }
public double Lng { get; set; }
public string? Address { get; set; }
public DateTime CachedAt { get; set; }
}
}