1
0
mirror of https://github.com/algora-io/tv.git synced 2025-03-27 20:20:18 +02:00
2024-08-15 18:02:56 +03:00

14 lines
196 B
Elixir

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