summaryrefslogtreecommitdiff
path: root/lib/exirc/sender_info.ex
blob: b468f648459d184201a30c9d19d1eb270b152eac (plain) (blame)
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