Files
Reflect/Shared/Models/MoodMetrics.swift
2022-02-13 10:20:43 -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
}