Schedule-ICTIS/Schedule ICTIS/Model/GroupsModel.swift
Vladimir Dubovik bb268cc6ad Commit
2025-02-19 12:43:52 +03:00

21 lines
314 B
Swift

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