mirror of
https://github.com/yattee/yattee.git
synced 2024-11-09 15:58:20 +00:00
f1e132a909
Fix #135
9 lines
149 B
Swift
9 lines
149 B
Swift
import Foundation
|
|
|
|
struct ChannelPage {
|
|
var results = [ContentItem]()
|
|
var channel: Channel?
|
|
var nextPage: String?
|
|
var last = false
|
|
}
|