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.
36 lines
481 B
36 lines
481 B
//
|
|
// RankingViewModel.swift
|
|
// AllIn
|
|
//
|
|
// Created by Emre on 30/12/2023.
|
|
//
|
|
|
|
import Foundation
|
|
import DependencyInjection
|
|
import ViewModel
|
|
|
|
class RankingViewModel: ObservableObject {
|
|
|
|
@Inject var manager: ManagerVM
|
|
|
|
init() {
|
|
getItems()
|
|
}
|
|
|
|
func getItems ( ) {
|
|
|
|
}
|
|
|
|
func deleteItem(indexSet: IndexSet) {
|
|
|
|
}
|
|
|
|
func moveltem(from: IndexSet, to: Int) {
|
|
|
|
}
|
|
|
|
func addItem(title: String) {
|
|
|
|
}
|
|
}
|