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.
23 lines
523 B
23 lines
523 B
//
|
|
// AbstractSoundTimer+CoreDataProperties.swift
|
|
// LeCountdown
|
|
//
|
|
// Created by Laurent Morvillier on 28/03/2023.
|
|
//
|
|
//
|
|
|
|
import Foundation
|
|
import CoreData
|
|
|
|
|
|
extension AbstractSoundTimer {
|
|
|
|
@nonobjc public class func fetchRequest() -> NSFetchRequest<AbstractSoundTimer> {
|
|
return NSFetchRequest<AbstractSoundTimer>(entityName: "AbstractSoundTimer")
|
|
}
|
|
|
|
@NSManaged public var confirmationSoundList: String?
|
|
@NSManaged public var repeatCount: Int16
|
|
@NSManaged public var playableIds: String?
|
|
|
|
}
|
|
|