| 12345678910111213141516171819202122 |
- //
- // CartVM.swift
- // SUIExamples
- //
- // Created by Pavel Yurchenko on 27.11.2024.
- //
- import SwiftUI
- @Observable
- final class CartVM {
- struct Output {
- var onProducts: Action?
- }
- let output: Output
- init(output: Output) {
- self.output = output
- }
- }
|