Ferrite-backup/Ferrite/DataManagement/Classes/TorrentSourceUrl+CoreDataProperties.swift
kingbri 1eef8202ca Ferrite: Decouple torrent sources
These sources will be converted to be more flexible with JavaScript
in the future.

The source catalog is populated by adding a source list in settings
then installing a source from the catalog.

Sources can be enabled or disabled when using Ferrite.

Signed-off-by: kingbri <bdashore3@gmail.com>
2022-08-04 21:33:59 -04:00

27 lines
534 B
Swift

//
// TorrentSourceUrl+CoreDataProperties.swift
// Ferrite
//
// Created by Brian Dashore on 7/25/22.
//
//
import Foundation
import CoreData
extension TorrentSourceUrl {
@nonobjc public class func fetchRequest() -> NSFetchRequest<TorrentSourceUrl> {
return NSFetchRequest<TorrentSourceUrl>(entityName: "TorrentSourceUrl")
}
@NSManaged public var urlString: String
@NSManaged public var repoName: String?
@NSManaged public var repoAuthor: String?
}
extension TorrentSourceUrl : Identifiable {
}