yattee/Model/CommentsPage.swift
Arkadiusz Fal 1f495562fc Comments improvements
* 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
2021-12-05 18:31:33 +01:00

8 lines
125 B
Swift

import Foundation
struct CommentsPage {
var comments = [Comment]()
var nextPage: String?
var disabled = false
}