This commit is contained in:
Trey t
2023-07-13 22:39:44 -05:00
parent 59dc0bbc4c
commit 93b8d674b4
13 changed files with 205 additions and 103 deletions

View File

@@ -0,0 +1,28 @@
//
// ThotStyle.swift
// Werkout_ios
//
// Created by Trey Tartt on 7/13/23.
//
import Foundation
enum ThotStyle: Int, CaseIterable {
case always = 1
case never = 2
case recovery = 3
case random = 4
func stringValue() -> String {
switch(self) {
case .always:
return "Always"
case .never:
return "Never"
case .recovery:
return "Recovery"
case .random:
return "Random"
}
}
}