2023-01-14 08:52:51 +01:00
|
|
|
//
|
|
|
|
// https://mczachurski.dev
|
|
|
|
// Copyright © 2023 Marcin Czachurski and the repository contributors.
|
|
|
|
// Licensed under the MIT License.
|
|
|
|
//
|
|
|
|
|
|
|
|
import Foundation
|
|
|
|
|
2023-01-31 12:20:49 +01:00
|
|
|
public struct CommentModel {
|
|
|
|
var status: StatusModel
|
2023-01-14 08:52:51 +01:00
|
|
|
var showDivider: Bool
|
|
|
|
}
|
2023-02-09 18:58:54 +01:00
|
|
|
|
|
|
|
extension CommentModel: Equatable {
|
|
|
|
public static func == (lhs: CommentModel, rhs: CommentModel) -> Bool {
|
|
|
|
return lhs.status.id == rhs.status.id
|
|
|
|
}
|
|
|
|
}
|