Sha256: 855ae4ffe4b5e50d14f5b897d0c887365734c09ec546d5373237168e0fa6928b

Contents?: true

Size: 249 Bytes

Versions: 9

Compression:

Stored size: 249 Bytes

Contents

module Xsys
  module Model
    class ProductCategory
      attr_accessor :id, :name

      def initialize(attributes={})
        attributes.each do |k,v|
          self.send("#{k}=", v) if self.respond_to?(k)
        end
      end
    end
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
xsys-0.0.27 lib/xsys/model/product_category.rb
xsys-0.0.26 lib/xsys/model/product_category.rb
xsys-0.0.25 lib/xsys/model/product_category.rb
xsys-0.0.24 lib/xsys/model/product_category.rb
xsys-0.0.23 lib/xsys/model/product_category.rb
xsys-0.0.22 lib/xsys/model/product_category.rb
xsys-0.0.21 lib/xsys/model/product_category.rb
xsys-0.0.20 lib/xsys/model/product_category.rb
xsys-0.0.19 lib/xsys/model/product_category.rb