Current section
Files
Jump to
Current section
Files
lib/entities/mac_address.ex
defmodule GeolocationClient.Entities.MacAddress do
@moduledoc """
Represents a MAC address entity.
"""
defstruct [
:mac_address,
:signal_strength
]
@type t :: %__MODULE__{
mac_address: String.t(),
signal_strength: integer()
}
end