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