Sha256: 1fcbf3e5ee469471adcdc553653db4b8dd0623ec6e8ab2657df6f2193b40563a

Contents?: true

Size: 461 Bytes

Versions: 2

Compression:

Stored size: 461 Bytes

Contents

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

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

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
expressir-0.2.2 lib/expressir/model/inverse.rb
expressir-0.2.1 lib/expressir/model/inverse.rb