Skip to content

Instantly share code, notes, and snippets.

@colinfwren
Created November 19, 2023 21:24
Show Gist options
  • Save colinfwren/ab7bcf5cacf5c1ad55c899a1e64c898f to your computer and use it in GitHub Desktop.
Save colinfwren/ab7bcf5cacf5c1ad55c899a1e64c898f to your computer and use it in GitHub Desktop.
Date Test Approach 2 Data Model
import Foundation
import SwiftData
@Model
final class ApproachModel {
var title: String
var year: Int
var month: Int? = nil
var week: Int? = nil
var day: Int? = nil
// rest of implementation
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment