1module Groonga
2  class IndexInfo
3    attr_reader :index
4    attr_reader :section_id
5    def initialize(index, section_id)
6      @index = index
7      @section_id = section_id
8    end
9  end
10end
11