attributes.rb 321 B

1234567891011121314151617
  1. class Sequencer
  2. class Sequence
  3. module Exchange
  4. module Folder
  5. class Attributes < Sequencer::Sequence::Base
  6. def self.sequence
  7. [
  8. 'Exchange::Connection',
  9. 'Exchange::Folder::Attributes',
  10. ]
  11. end
  12. end
  13. end
  14. end
  15. end
  16. end