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.
Apple/Sources/AllInApp/AllIn/ViewModels/HistoricBetViewModel.swift

25 lines
337 B

//
// HistoricBetViewModel.swift
// AllIn
//
// Created by Emre on 16/01/2024.
//
import Foundation
import SwiftUI
import ViewModel
import DependencyInjection
class HistoricBetViewModel: ObservableObject {
@Inject var manager: ManagerVM
init() {
getItems()
}
func getItems() {
}
}