Files
music_library/lib/last_fm/artist.ex
T
2024-11-11 20:51:00 +00:00

9 lines
170 B
Elixir

defmodule LastFm.Artist do
defstruct [:musicbrainz_id, :name]
@type t :: %__MODULE__{
musicbrainz_id: String.t(),
name: String.t()
}
end