mobilizon.chapril.org-mobil.../lib/service/global_search/event_result.ex
Thomas Citharel 48935e2168
Add global search
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
2022-08-28 10:02:06 +02:00

19 lines
318 B
Elixir

defmodule Mobilizon.Service.GlobalSearch.EventResult do
@moduledoc """
The structure holding search result information about an event
"""
defstruct [
:id,
:uuid,
:url,
:title,
:begins_on,
:ends_on,
:picture,
:category,
:tags,
:organizer_actor,
:participants
]
end