Sha256: 488f49c7fae7ce504be4e8154d4fba63616b0aba8442565469bdc7e5982fb50d
Contents?: true
Size: 294 Bytes
Versions: 5
Compression:
Stored size: 294 Bytes
Contents
# frozen_string_literal: true module Icasework ## # A Ruby representation of a classification in iCasework # class Classification attr_reader :group, :title def initialize(attributes) @group = attributes[:group] @title = attributes[:__content__] end end end
Version data entries
5 entries across 5 versions & 1 rubygems