mirror of
https://github.com/yattee/yattee.git
synced 2024-11-09 15:58:20 +00:00
1f495562fc
* Show text when there is no comments or comments are disabled * Show progress indicator for loading comments/replies * Improve layout of icons and text spacing
8 lines
125 B
Swift
8 lines
125 B
Swift
import Foundation
|
|
|
|
struct CommentsPage {
|
|
var comments = [Comment]()
|
|
var nextPage: String?
|
|
var disabled = false
|
|
}
|