Mercurial > public > geoquiz
view GeoQuiz/Logic/PlayedGame+CoreDataProperties.swift @ 21:b145c408f791
refactor code
author | Dennis C. M. <dennis@denniscm.com> |
---|---|
date | Tue, 25 Oct 2022 15:30:01 +0200 |
parents | e281791e0494 |
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 { }