18 lines
273 B
Swift
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
|
|
}
|