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

27 lines
539 B
C#

using SQLite;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LSFE.MobApp.Entities
{
public class AddressCache
{
[PrimaryKey, AutoIncrement]
public int Id { get; set; }
[Indexed]
public double Latitude { get; set; }
[Indexed]
public double Longitude { get; set; }
[Indexed]
public DateTime CachedAt { get; set; }
public string Address { get; set; } = string.Empty;
}
}