NetNewsWire/Frameworks/Account/Feed.swift

23 lines
406 B
Swift
Raw Normal View History

2019-11-15 13:19:14 +01:00
//
// 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 {
2019-11-22 01:22:43 +01:00
case read
case none
case alwaysRead
2019-11-22 01:22:43 +01:00
}
2019-11-15 13:19:14 +01:00
public protocol Feed: FeedIdentifiable, ArticleFetcher, DisplayNameProvider, UnreadCountProvider {
var defaultReadFilterType: ReadFilterType { get }
2019-11-22 01:22:43 +01:00
2019-11-15 13:19:14 +01:00
}