Vladimir Dubovik d3f448e288 Initial Commit
2024-11-13 17:41:03 +03:00

24 lines
351 B
Swift

//
// ViewModel.swift
// Schedule ICTIS
//
// Created by G412 on 13.11.2024.
//
import Foundation
// MARK: - Welcome
struct Schedule: Codable {
let table: Table
let weeks: [Int]
}
// MARK: - Table
struct Table: Codable {
let type, name: String
let week: Int
let group: String
let table: [[String]]
let link: String
}