Sha256: adf3b40da663bfd56141297152ce28b3601c498f0a04aeaeaf7fe54a62c79781
Contents?: true
Size: 288 Bytes
Versions: 14
Compression:
Stored size: 288 Bytes
Contents
module Expressir module Model module Types class Binary < ModelElement attr_accessor :width attr_accessor :fixed def initialize(options = {}) @width = options[:width] @fixed = options[:fixed] end end end end end
Version data entries
14 entries across 14 versions & 1 rubygems