# frozen_string_literal: true module Cocina module Models class DescriptiveParallelValue < Struct attribute :parallelValue, Types::Strict::Array.of(DescriptiveValue).default([].freeze) end end end