23 lines
406 B
Swift
23 lines
406 B
Swift
//
|
|
// Feed.swift
|
|
// Account
|
|
//
|
|
// Created by Maurice Parker on 11/15/19.
|
|
// Copyright © 2019 Ranchero Software, LLC. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
import RSCore
|
|
|
|
public enum ReadFilterType {
|
|
case read
|
|
case none
|
|
case alwaysRead
|
|
}
|
|
|
|
public protocol Feed: FeedIdentifiable, ArticleFetcher, DisplayNameProvider, UnreadCountProvider {
|
|
|
|
var defaultReadFilterType: ReadFilterType { get }
|
|
|
|
}
|