Current section
Files
Jump to
Current section
Files
lib/entities/lat_lon.ex
defmodule GeolocationClient.Entities.LatLon do
@moduledoc """
Represents a latitude and longitude entity.
"""
defstruct [
:latitude,
:longitude,
:accuracy
]
@type t :: %__MODULE__{
latitude: float(),
longitude: float(),
accuracy: float()
}
end