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

17 lines
251 B
Swift

//
// Activity.swift
// FitnessApp
//
// Created by Matt Bruce on 12/20/24.
//
import SwiftUI
struct Activity {
let id: Int
let title: String
let subtitle: String
let image: String
let tintColor: Color
let amount: String
}