1
0
mirror of https://github.com/algora-io/tv.git synced 2025-03-27 20:20:18 +02:00
algora-tv/lib/algora/ads/events.ex

14 lines
196 B
Elixir
Raw Normal View History

defmodule Algora.Ads.Events do
defmodule AdCreated do
defstruct ad: nil
end
defmodule AdUpdated do
defstruct ad: nil
end
defmodule AdDeleted do
defstruct ad: nil
end
end