Packages
rockbox_ex
0.1.0
Idiomatic Elixir SDK for Rockbox — pipe-friendly, builder-friendly, with real-time event subscriptions and a plugin system.
Current section
Files
Jump to
Current section
Files
lib/rockbox/saved_playlist_folder.ex
defmodule Rockbox.SavedPlaylistFolder do
@moduledoc "A folder grouping saved playlists together."
@type t :: %__MODULE__{
id: String.t(),
name: String.t(),
created_at: integer(),
updated_at: integer()
}
defstruct [:id, :name, :created_at, :updated_at]
end