1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/bluebox/models/compute/location.rb

14 lines
187 B
Ruby
Raw Normal View History

2012-02-12 03:02:52 -05:00
require 'fog/core/model'
module Fog
module Compute
class Bluebox
class Location < Fog::Model
identity :id
2014-02-19 07:30:59 -05:00
2012-02-12 03:02:52 -05:00
attribute :description
end
end
end
end