Created
July 4, 2025 11:20
-
-
Save jacobsapps/aa397e20a896fafb801825ef2db92f06 to your computer and use it in GitHub Desktop.
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
| @Model | |
| final class CardEntity { | |
| // ... | |
| init(id: UUID, title: String, emoji: String, hexColor: String, rarity: String, image: UIImage, createdAt: Date) { | |
| // ... | |
| self.stats = [] | |
| self.imageData = image.pngData() ?? Data() | |
| self.createdAt = createdAt | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment