mirror of
https://github.com/yattee/yattee.git
synced 2024-12-12 21:30:32 +05:30
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
|
|
}
|