5 lines
166 B
Elixir
5 lines
166 B
Elixir
defmodule Outlook.InternalTree.InternalNode do
|
|
@derive Jason.Encoder
|
|
defstruct name: "", attributes: %{}, type: :atom, uuid: "", content: [], sibling_with: nil
|
|
end
|