CartVM.swift 286 B

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