mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-09 07:28:41 -07:00
3 lines
173 B
Ruby
3 lines
173 B
Ruby
class Score < Struct.new(:average, :meets_teacher_threshold?, :meets_student_threshold?, :meets_admin_data_threshold?)
|
|
NIL_SCORE = Score.new(nil, false, false, false)
|
|
end
|