fitness_app/FitnessApp/Home/Models/Activity.swift
Matt Bruce ca2476be6f updated
Signed-off-by: Matt Bruce <mbrucedogs@gmail.com>
2024-12-21 12:08:47 -06:00

18 lines
273 B
Swift

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