9 lines
118 B
Elixir
9 lines
118 B
Elixir
defmodule PlugIndie.Post do
|
|
defstruct [
|
|
:bookmark_of,
|
|
:content,
|
|
:like_of,
|
|
:title,
|
|
:type
|
|
]
|
|
end
|