19 lines
318 B
Elixir
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
|