mirror of
https://github.com/yattee/yattee.git
synced 2024-11-10 00:08:21 +00:00
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
|
||
|
}
|