1class Session 2 def initialize(id, user_id) 3 @id = id 4 @user_id = user_id 5 end 6 7 def to_h 8 { "id" => @id, "user_id" => @user_id } 9 end 10end