mirror of
https://github.com/zammad/zammad
synced 2026-05-24 09:48:36 +00:00
14 lines
330 B
Ruby
14 lines
330 B
Ruby
# Copyright (C) 2012-2026 Zammad Foundation, https://zammad-foundation.org/
|
|
|
|
class Sequencer::Sequence
|
|
extend ::Sequencer::Mixin::PrefixedConstantize
|
|
|
|
PREFIX = 'Sequencer::Sequence::'.freeze
|
|
|
|
attr_reader :units, :expecting
|
|
|
|
def initialize(units:, expecting: [])
|
|
@units = units
|
|
@expecting = expecting
|
|
end
|
|
end
|