class Hotel

Attributes

location[RW]
name[RW]

Public Class Methods

new(name, location) click to toggle source
# File lib/travel/hotels.rb, line 4
      def initialize(name, location)
  @name = name 
  @location = location
end