This commit is contained in:
Trey t
2023-06-21 23:00:11 -05:00
parent c77ed03ca2
commit 4949636836
6 changed files with 76 additions and 4 deletions

View File

@@ -46,3 +46,14 @@ class CreateWorkoutFetchable: Postable {
self.postableData = postData
}
}
class CompleteWorkoutFetchable: Postable {
var postableData: [String : Any]?
typealias Response = CompletedWorkout
var endPoint: String = "workout/complete/"
init(postData: [String: Any]) {
self.postableData = postData
}
}