Mercurial > public > geoquiz
view GeoQuiz/Models/PlayedGame+CoreDataProperties.swift @ 37:9dd1dce5d05c
Add link to App Store
author | Dennis <dennis@denniscm.com> |
---|---|
date | Fri, 11 Aug 2023 17:28:30 +0000 |
parents | 425078c01194 |
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 { }