Sha256: e4684d79c876b2b3a5039161be7579199e8a3a62e195b7fff5e109301ef66310

Contents?: true

Size: 278 Bytes

Versions: 1

Compression:

Stored size: 278 Bytes

Contents

module Expressir
  module Model
    class Type
      attr_accessor :id
      attr_accessor :type
      attr_accessor :where

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

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
expressir-0.2.0 lib/expressir/model/type.rb