ce38361d65
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
19 lines
334 B
Elixir
19 lines
334 B
Elixir
defmodule Mobilizon.Service.GlobalSearch.GroupResult do
|
|
@moduledoc """
|
|
The structure holding search result information about a group
|
|
"""
|
|
defstruct [
|
|
:id,
|
|
:url,
|
|
:name,
|
|
:preferred_username,
|
|
:domain,
|
|
:avatar,
|
|
:summary,
|
|
:members_count,
|
|
:follower_count,
|
|
:type,
|
|
:physical_address
|
|
]
|
|
end
|