Sha256: 5e70d21ae8d7694fcb51fb6deffcdf389b0e84e5a2282c804c2fbf623a8eec93

Contents?: true

Size: 355 Bytes

Versions: 1

Compression:

Stored size: 355 Bytes

Contents

module Expressir
  module Model
    class Variable
      attr_accessor :id
      attr_accessor :type
      attr_accessor :expression

      attr_accessor :parent
      attr_accessor :remarks

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

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
expressir-0.2.3 lib/expressir/model/variable.rb