live_beats/lib/live_beats/media_library/events.ex

22 lines
365 B
Elixir
Raw Normal View History

2021-11-12 11:42:07 +00:00
defmodule LiveBeats.MediaLibrary.Events do
defmodule Play do
defstruct song: nil, elapsed: nil
end
defmodule Pause do
defstruct song: nil
end
defmodule PublicProfileUpdated do
defstruct profile: nil
end
2021-12-16 02:51:09 +00:00
defmodule SongsImported do
defstruct user_id: nil, songs: []
end
2023-01-26 19:05:24 +00:00
defmodule NewPosition do
defstruct song: nil
end
2021-11-12 11:42:07 +00:00
end