Sha256: f38f81b22e6da2057e2198c6ec151baa7a564386d3498e398e5cf51a2dad9bac

Contents?: true

Size: 294 Bytes

Versions: 1

Compression:

Stored size: 294 Bytes

Contents

module Expressir
  module Model
    module Statements
      class CaseAction
        attr_accessor :label
        attr_accessor :statement

        def initialize(options = {})
          @label = options[:label]
          @statement = options[:statement]
        end
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
expressir-0.2.0 lib/expressir/model/statements/case_action.rb