mirror of
https://framagit.org/framasoft/mobilizon.git
synced 2025-01-23 09:08:41 +00:00
8 lines
153 B
Elixir
8 lines
153 B
Elixir
|
defmodule Eventos.Activity do
|
||
|
@moduledoc """
|
||
|
Represents an activity
|
||
|
"""
|
||
|
|
||
|
defstruct [:id, :data, :local, :actor, :recipients, :notifications]
|
||
|
end
|