Commit
This commit is contained in:
20
Schedule ICTIS/Model/GroupsModel.swift
Normal file
20
Schedule ICTIS/Model/GroupsModel.swift
Normal file
@ -0,0 +1,20 @@
|
||||
//
|
||||
// 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
|
||||
}
|
Reference in New Issue
Block a user