Files
Reflect/Shared/Models/MoodMetrics.swift
Trey t f2565678be wip
2025-12-09 23:37:04 -06:00

16 lines
217 B
Swift

//
// MoodMetrics.swift
// Feels
//
// Created by Trey Tartt on 2/12/22.
//
import Foundation
struct MoodMetrics: Identifiable {
let id = UUID()
let mood: Mood
let total: Int
let percent: Float
}