fix: insignia + leave Error
This commit is contained in:
parent
41d28c4d7f
commit
7d8a80e9df
72 changed files with 132 additions and 142 deletions
28
BMA.EHR.Leave/DTOs/POI/GetPOIResultDto.cs
Normal file
28
BMA.EHR.Leave/DTOs/POI/GetPOIResultDto.cs
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
namespace BMA.EHR.Leave.Service.DTOs.POI
|
||||
{
|
||||
public class GetPOIResultDto
|
||||
{
|
||||
public List<POIItem> results { get; set; } = new List<POIItem>();
|
||||
}
|
||||
|
||||
public class POIItem
|
||||
{
|
||||
public string place_id { get; set; } = string.Empty;
|
||||
|
||||
public string name { get; set; } = string.Empty;
|
||||
|
||||
public GeometryItem geometry { get; set; } = new();
|
||||
}
|
||||
|
||||
public class GeometryItem
|
||||
{
|
||||
public LocationItem location { get; set; } = new();
|
||||
}
|
||||
|
||||
public class LocationItem
|
||||
{
|
||||
public double lat { get; set; } = 0;
|
||||
|
||||
public double lng { get; set; } = 0;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue