You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
377 B
27 lines
377 B
//
|
|
// DetailsViewModel.swift
|
|
// AllIn
|
|
//
|
|
// Created by Emre on 16/01/2024.
|
|
//
|
|
|
|
import Foundation
|
|
import SwiftUI
|
|
import ViewModel
|
|
import DependencyInjection
|
|
|
|
class DetailsViewModel: ObservableObject {
|
|
|
|
@Inject var manager: ManagerVM
|
|
var id: String
|
|
|
|
init(id: String) {
|
|
self.id = id
|
|
getItem()
|
|
}
|
|
|
|
func getItem() {
|
|
|
|
}
|
|
}
|