16 lines
217 B
Swift
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
|
|
}
|