The popular open-source contract for web professionals by Stuff & Nonsense
- Originally published: 23rd December 2008
- Revised date: March 15th 2016
- Revised by Bytes Unlimited : Feb 3rd 2020
| import SwiftUI | |
| // MARK: - Exercise Data Model | |
| struct ExerciseSet: Identifiable { | |
| let id = UUID() | |
| var weight: Double | |
| var reps: Int | |
| var isCompleted: Bool = false | |
| } |