mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-07 21:48:16 -08:00
5 lines
204 B
Ruby
5 lines
204 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Score < Struct.new(:average, :meets_teacher_threshold?, :meets_student_threshold?, :meets_admin_data_threshold?)
|
|
NIL_SCORE = Score.new(nil, false, false, false)
|
|
end
|