8 lines
180 B
C#
8 lines
180 B
C#
namespace HomeApi.Models.Response;
|
|
|
|
public class NomatimApiResponse
|
|
{
|
|
public string Lat { get; set; }
|
|
public string Lon { get; set; }
|
|
public string Name { get; set; }
|
|
} |