kevintuhumury/cameraplus

View on GitHub
lib/cameraplus/photo_recipe.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Cameraplus
  class PhotoRecipe

    attr_reader :type, :value

    def initialize(data)
      @type  = data.type
      @value = data.value
    end

  end
end