Created Alarm Class

This commit is contained in:
Aaron
2021-01-13 12:59:01 -05:00
parent a554084629
commit aa8b8378fd
+22
View File
@@ -0,0 +1,22 @@
//
// Alarm.swift
// ProjectClock
//
// Created by Aaron Saporito on 1/13/21.
//
import Foundation
class Alarm {
var alarmTime: Date
var text: String
var wakeMethod: WVM
init(alarmTime: Date, text: String, wakeMethod: WVM) {
self.alarmTime = alarmTime
self.text = text
self.wakeMethod = wakeMethod
}
}