fjbelchi/clean-iOS-architecture-generator

View on GitHub
lib/ios_gen/base/property.rb

Summary

Maintainability
A
0 mins
Test Coverage
module IOSGen
  module Base
    # Object Property
    class Property
      attr_accessor :type, :name

      def initialize(params = {})
        @type = params[:type]
        @name = params[:name]
      end
    end
  end
end