14 lines
182 B
Elixir
14 lines
182 B
Elixir
|
defmodule Mobilizon.Events.Activity do
|
||
|
@moduledoc """
|
||
|
Represents an activity.
|
||
|
"""
|
||
|
|
||
|
defstruct [
|
||
|
:data,
|
||
|
:local,
|
||
|
:actor,
|
||
|
:recipients,
|
||
|
:notifications
|
||
|
]
|
||
|
end
|