class Seatsio::Channel

def == (other)

def == (other)
  self.key == other.key &&
      self.name == other.name &&
      self.color == other.color &&
      self.index == other.index &&
      self.objects == other.objects
end

def initialize(key, name, color, index, objects)

def initialize(key, name, color, index, objects)
  @key = key
  @name = name
  @color = color
  @index = index
  @objects = objects
end