thirteen-tien-len/app/models/video_room.rb
2023-12-03 16:02:27 +00:00

12 lines
112 B
Ruby

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