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
|