12 Zeilen
250 B
Ruby
12 Zeilen
250 B
Ruby
# frozen_string_literal: true
|
|
class CustomWizard::RealtimeValidation::Result
|
|
attr_accessor :type,
|
|
:items,
|
|
:serializer_opts
|
|
|
|
def initialize(type)
|
|
@type = type
|
|
@items = []
|
|
@serializer_opts = {}
|
|
end
|
|
end
|