- Initialize iOS project with 6-tab navigation structure - Configure custom Light/Dark themes and AppColors - Define SwiftData models for Tasks, Tags, Goals, and TrackingRecords - Setup relationships (Super/Sub tags) and cascade delete rules - Implement Observable TrackingEngine for real-time timer updates
19 lines
238 B
Swift
19 lines
238 B
Swift
//
|
|
// Item.swift
|
|
// TallyFlow
|
|
//
|
|
// Created by 송예찬 on 6/26/26.
|
|
//
|
|
|
|
import Foundation
|
|
import SwiftData
|
|
|
|
@Model
|
|
final class Item {
|
|
var timestamp: Date
|
|
|
|
init(timestamp: Date) {
|
|
self.timestamp = timestamp
|
|
}
|
|
}
|