mirror of
https://github.com/yattee/yattee.git
synced 2024-11-10 00:08:21 +00:00
7 lines
100 B
Swift
7 lines
100 B
Swift
|
import Foundation
|
||
|
|
||
|
struct CommentsPage {
|
||
|
var comments = [Comment]()
|
||
|
var nextPage: String?
|
||
|
}
|