Sha256: afc1106fa7a2964735035a45e0d1427495f69828443b43778a1041290416f100
Contents?: true
Size: 553 Bytes
Versions: 13
Compression:
Stored size: 553 Bytes
Contents
module Expressir module Model module References # Specified in ISO 10303-11:2004 # - section 12.7.4 Group references class GroupReference < Reference model_attr_accessor :ref, "Reference" model_attr_accessor :entity, "Reference" # @param [Hash] options # @option options [Reference] :ref # @option options [Reference] :entity def initialize(options = {}) @ref = options[:ref] @entity = options[:entity] super end end end end end
Version data entries
13 entries across 13 versions & 1 rubygems