aboutsummaryrefslogtreecommitdiff
path: root/core/messageinfo.rb
blob: 4499bdcc5e19a3a4788f53118153170014c84c30 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
module Dinobot
  module Core
    class MessageInfo
      attr_accessor :user, :channel, :message, :response

      def initialize(user, channel, message)
        @user = user
        @channel = channel
        @message = message
        @response = []
      end
    end
  end
end