Sha256: 814dedb80ecfe2ef170cee00d19e50ce72f1bb18089811da4578320b5d2b2182
Contents?: true
Size: 367 Bytes
Versions: 14
Compression:
Stored size: 367 Bytes
Contents
module Expressir module Model module Types class Bag < ModelElement attr_accessor :bound1 attr_accessor :bound2 attr_accessor :base_type def initialize(options = {}) @bound1 = options[:bound1] @bound2 = options[:bound2] @base_type = options[:base_type] end end end end end
Version data entries
14 entries across 14 versions & 1 rubygems