class Seatsio::Channel
def == (other)
def == (other) key == other.key && name == other.name && color == other.color && index == other.index && 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