Guest User

Untitled

a guest
Aug 28th, 2022
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. struct Exercise: Identifiable {
  2. var id = UUID()
  3. var name: String
  4. var image: String
  5. var time: Double
  6. var restTime: Double
  7. var routine: [workouts]
  8. }
  9.  
  10. let exerciseData = [
  11.  
  12. Exercise(name: "Chest Hypertrophy", image: "push-ups", time: 60, restTime: 1.00, routine: [workouts.Pushups, workouts.DumbbellBenchPress])
  13.  
  14. ]
  15.  
Advertisement
Add Comment
Please, Sign In to add comment