module Boty module Slack class Channel attr_accessor :id def initialize(id:, info:) @id = id @info = info end end end end