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; } }