lib/values/value.ex

defmodule Platem.Value do
  @moduledoc """
  This module represents the value data type.
  """
  defstruct [:name, :value]
end