This repository has been archived on 2026-05-26. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
avh-plan-ios/AvH Plan/SubstModel.swift
T

32 lines
740 B
Swift
Raw Normal View History

//
// SubstModel.swift
// AvH Plan
//
// Created by Deniz Duezgoeren on 09.07.19.
// Copyright © 2019 Deniz Duezgoeren. All rights reserved.
//
import Foundation
class SubstModel {
2019-07-10 20:52:08 +02:00
var group: String
var course: String
var additional: String
var date: String
var time: String
var room: String
2019-08-23 14:38:50 +02:00
var teacher: String
var type: String
init(group: String, course: String, additional: String, date: String, time: String, room: String, teacher: String, type: String) {
2019-07-10 20:52:08 +02:00
self.group = group
self.course = course
self.additional = additional
self.date = date
self.time = time
self.room = room
2019-08-23 14:38:50 +02:00
self.teacher = teacher
self.type = type
2019-07-10 20:52:08 +02:00
}
}