2023-10-23 06:58:18 +00:00

12 lines
107 B
Ruby

class Room
attr_reader :id
def initialize(id:)
@id = id
end
def to_param
id
end
end