mobilizon.chapril.org-mobil.../lib/service/global_search/event_result.ex

20 lines
341 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,
:physical_address
]
end