plug_indie/lib/post.ex

11 lines
137 B
Elixir
Raw Normal View History

2024-11-29 09:42:27 +00:00
defmodule PlugIndie.Post do
defstruct [
:bookmark_of,
:content,
:like_of,
:title,
2024-12-06 08:40:16 +00:00
:type,
:published_at
]
end