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>
27 lines
534 B
Swift
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 {
|
|
|
|
}
|