559c889f1b
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
8 lines
162 B
Elixir
8 lines
162 B
Elixir
defmodule Mobilizon.Activity do
|
|
@moduledoc """
|
|
Represents an activity
|
|
"""
|
|
|
|
defstruct [:id, :data, :local, :actor, :recipients, :notifications, :type]
|
|
end
|