class Seatsio::SocialDistancingRuleset

def == (other)

def == (other)
  self.name == other.name &&
    self.number_of_disabled_seats_to_the_sides == other.number_of_disabled_seats_to_the_sides &&
    self.disable_seats_in_front_and_behind == other.disable_seats_in_front_and_behind &&
    self.disable_diagonal_seats_in_front_and_behind == other.disable_diagonal_seats_in_front_and_behind &&
    self.number_of_disabled_aisle_seats == other.number_of_disabled_aisle_seats &&
    self.max_group_size == other.max_group_size &&
    self.max_occupancy_absolute == other.max_occupancy_absolute &&
    self.max_occupancy_percentage == other.max_occupancy_percentage &&
    self.one_group_per_table == other.one_group_per_table &&
    self.fixed_group_layout == other.fixed_group_layout &&
    self.disabled_seats == other.disabled_seats &&
    self.enabled_seats == other.enabled_seats &&
    self.index == other.index
end