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

16 lines
345 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LSFE.MobApp.DTO
{
public class LocationResult
{
public double Latitude { get; set; }
public double Longitude { get; set; }
public string Address { get; set; } = string.Empty;
}
}