14 lines
308 B
C#
14 lines
308 B
C#
|
|
namespace BMA.EHR.Command.Service.DTOs.POI
|
|||
|
|
{
|
|||
|
|
public class POIResultDto
|
|||
|
|
{
|
|||
|
|
public string Id { get; set; } = string.Empty;
|
|||
|
|
|
|||
|
|
public string Name { get; set; } = string.Empty;
|
|||
|
|
|
|||
|
|
public double Latitude { get; set; } = 0;
|
|||
|
|
|
|||
|
|
public double Longitude { get; set; } = 0;
|
|||
|
|
}
|
|||
|
|
}
|