initial version

This commit is contained in:
alexandrev-tibco
2026-01-15 09:24:06 +01:00
parent bab350dd22
commit 7988257399
139 changed files with 13149 additions and 3233 deletions
+25
View File
@@ -0,0 +1,25 @@
import Foundation
enum InputMode: String, CaseIterable, Identifiable {
case simple
case detailed
var id: String { rawValue }
var title: String {
switch self {
case .simple: return "Simple"
case .detailed: return "Detailed"
}
}
var description: String {
switch self {
case .simple:
return "Enter a single total value per snapshot."
case .detailed:
return "Enter invested amount and gains to track additional metrics."
}
}
}