Mercurial > public > geoquiz
view app/GeoQuiz/Models/PlayedGame+CoreDataProperties.swift @ 42:bcfd86dcaf3a default tip
Move to mercurial
author | Dennis C. M. <dennis@denniscm.com> |
---|---|
date | Tue, 03 Jun 2025 14:15:38 +0100 |
parents | a355ff3947a4 |
children |
line wrap: on
line source
// // PlayedGame+CoreDataProperties.swift // GeoQuiz // // Created by Dennis Concepción Martín on 19/10/22. // // import Foundation import CoreData extension PlayedGame { @nonobjc public class func fetchRequest() -> NSFetchRequest<PlayedGame> { return NSFetchRequest<PlayedGame>(entityName: "PlayedGame") } @NSManaged public var type: GameType @NSManaged public var score: Int32 @NSManaged public var date: Date? @NSManaged public var correctAnswers: [String]? @NSManaged public var wrongAnswers: [String]? } extension PlayedGame : Identifiable { }