aboutsummaryrefslogtreecommitdiffstats
path: root/lib/roo/excelx/coordinate.rb
blob: 53b24ba60065f0f39c8c2235a53c5cb46b0c0ed2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
module Roo
  class Excelx
    class Coordinate
      attr_accessor :row, :column

      def initialize(row, column)
        @row = row
        @column = column
      end
    end
  end
end