16 lines
345 B
C#
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;
|
|
}
|
|
}
|