WIP - Sharing

This commit is contained in:
Trey t
2022-02-13 10:20:43 -06:00
parent c85801b099
commit b878d908c4
16 changed files with 877 additions and 289 deletions

View File

@@ -0,0 +1,15 @@
//
// 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
}