Added model and mvc

This commit is contained in:
2024-01-12 23:19:13 +01:00
parent c97c0e24d9
commit 7d5d013f86
4 changed files with 136 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
//
// TrashModelView.swift
// TrashTrack
//
// Created by Oliver Hnát on 12.01.2024.
//
import Foundation
class TrashModelView {
let model = TrashModel()
func getTrashEvents() -> [TrashEvent] {
return model.trashEvents
}
}