1 2 3 4 5 6 7 8
defmodule ExIrc.SenderInfo do @moduledoc """ This struct represents information available about the sender of a message. """ defstruct nick: nil, host: nil, user: nil end