Sha256: daf5330d6827429313e95a2422ba23f8b88fb324527140a2c317787370c1e9c8

Contents?: true

Size: 293 Bytes

Versions: 1

Compression:

Stored size: 293 Bytes

Contents

module Expressir
  module Model
    class Inverse
      attr_accessor :id
      attr_accessor :type
      attr_accessor :attribute

      def initialize(options = {})
        @id = options[:id]
        @type = options[:type]
        @attribute = options[:attribute]
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
expressir-0.2.0 lib/expressir/model/inverse.rb