geo-therminator/lib/geo_therminator/pump_api/auth/installation_info.ex

8 lines
188 B
Elixir
Raw Normal View History

2021-11-07 09:01:39 +00:00
defmodule GeoTherminator.PumpAPI.Auth.InstallationInfo do
2023-01-11 18:37:27 +00:00
require Record
2021-11-07 09:01:39 +00:00
2023-01-11 18:37:27 +00:00
Record.defrecord(:record, :installation_info, [:id])
@type t :: record(:record, id: non_neg_integer())
2021-11-07 09:01:39 +00:00
end