Can I somehow use Struct or OpenStruct to make my class more concise?
class RecipientScorer::ScoreResult
attr_accessor :id, :score_data, :total_score, :percent_match
def initialize(id, score_data, total_score, percent_match)
@id = id
@score_data = score_data
@total_score = total_score
@percent_match = percent_match
end
end