18 lines
276 B
Swift
18 lines
276 B
Swift
//
|
|
// Workout.swift
|
|
// FitnessApp
|
|
//
|
|
// Created by Matt Bruce on 12/20/24.
|
|
//
|
|
import SwiftUI
|
|
|
|
struct Workout {
|
|
let id = UUID()
|
|
let title: String
|
|
let image: String
|
|
let tintColor: Color
|
|
let duration: String
|
|
let date: String
|
|
let calories: String
|
|
}
|