Merge branch 'main' of github.com:hykilpikonna/ProjectClock into main

This commit is contained in:
Dallon Archibald
2021-01-13 13:00:25 -05:00
+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
}
}