Schedule-ICTIS/Schedule ICTIS/Model/GroupsModel.swift
Vladimir Dubovik 14c229175c Commit
2025-04-03 11:10:21 +03:00

21 lines
316 B
Swift

//
// SubjectsModel.swift
// Schedule ICTIS
//
// Created by Mironov Egor on 19.02.2025.
//
import Foundation
// MARK: - Welcome
struct Welcome: Decodable {
let choices: [Subject]
}
// MARK: - Choice
struct Subject: Decodable, Identifiable {
let name: String
let id: String
let group: String
}