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