You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
LeCountdown/LeCountdown/Model/Generation/AbstractSoundTimer+CoreData...

22 lines
458 B

//
// AbstractSoundTimer+CoreDataProperties.swift
// LeCountdown
//
// Created by Laurent Morvillier on 08/02/2023.
//
//
import Foundation
import CoreData
extension AbstractSoundTimer {
@nonobjc public class func fetchRequest() -> NSFetchRequest<AbstractSoundTimer> {
return NSFetchRequest<AbstractSoundTimer>(entityName: "AbstractSoundTimer")
}
@NSManaged public var repeatCount: Int16
@NSManaged public var sound: Int16
}