lib/runbox/scenario_template.ex

defmodule Runbox.ScenarioTemplate do
  @moduledoc """
  Holds information about scenario template.
  """

  defstruct [:module, :info]

  @type t :: %__MODULE__{
          module: module(),
          info: term()
        }
end