fitness_app/FitnessApp/Home/Models/Workout.swift
Matt Bruce 1df20c79cb reaaaranged
Signed-off-by: Matt Bruce <mbrucedogs@gmail.com>
2024-12-20 14:17:51 -06:00

18 lines
272 B
Swift

//
// Workout.swift
// FitnessApp
//
// Created by Matt Bruce on 12/20/24.
//
import SwiftUI
struct Workout {
let id: Int
let title: String
let image: String
let tintColor: Color
let duration: String
let date: String
let calories: String
}