FeedbackVM.swift 263 B

12345678910111213141516171819202122
  1. //
  2. // FeedbackVM.swift
  3. // SUIExamples
  4. //
  5. // Created by Pavel Yurchenko on 27.11.2024.
  6. //
  7. import SwiftUI
  8. @Observable
  9. final class FeedbackVM {
  10. struct Output {
  11. }
  12. let output: Output
  13. init(output: Output) {
  14. self.output = output
  15. }
  16. }