Created
May 16, 2026 18:58
-
-
Save NDCSwift/a3944fecb9e1d0ac101eb643500adb7f to your computer and use it in GitHub Desktop.
Sample Movies from 2024 for MacOS Table
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| extension Movie { | |
| static let samples: [Movie] = [ | |
| Movie(id: .init(), title: "Dune: Part Two", year: 2024, director: "Denis Villeneuve", genre: .scifi, rating: 8.6, watched: true), | |
| Movie(id: .init(), title: "The Brutalist", year: 2024, director: "Brady Corbet", genre: .drama, rating: 7.9, watched: false), | |
| Movie(id: .init(), title: "Alien: Romulus", year: 2024, director: "Fede Álvarez", genre: .thriller, rating: 7.3, watched: true), | |
| Movie(id: .init(), title: "A Real Pain", year: 2024, director: "Jesse Eisenberg", genre: .drama, rating: 8.1, watched: false), | |
| Movie(id: .init(), title: "Conclave", year: 2024, director: "Edward Berger", genre: .thriller, rating: 7.7, watched: true), | |
| Movie(id: .init(), title: "Nickel Boys", year: 2024, director: "RaMell Ross", genre: .drama, rating: 8.3, watched: false), | |
| Movie(id: .init(), title: "The Substance", year: 2024, director: "Coralie Fargeat", genre: .thriller, rating: 7.4, watched: true), | |
| Movie(id: .init(), title: "I Saw the TV Glow", year: 2024, director: "Jane Schoenbrun", genre: .drama, rating: 7.2, watched: false), | |
| Movie(id: .init(), title: "His Three Daughters", year: 2024, director: "Aza Jacobs", genre: .drama, rating: 7.8, watched: true), | |
| Movie(id: .init(), title: "Challengers", year: 2024, director: "Luca Guadagnino", genre: .drama, rating: 7.5, watched: true), | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment