mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-04-18 23:48:29 +02:00
- Fixed - Other minor code / UI tweaks
This commit is contained in:
@@ -49,10 +49,20 @@ enum MatrixListItemDataType {
|
||||
}
|
||||
|
||||
struct MatrixListItemSectionData {
|
||||
let id = UUID().uuidString
|
||||
let id: String
|
||||
let title: String?
|
||||
let infoText: String?
|
||||
let items: [MatrixListItemData]
|
||||
|
||||
init(id: String = UUID().uuidString,
|
||||
title: String? = nil,
|
||||
infoText: String? = nil,
|
||||
items: [MatrixListItemData] = []) {
|
||||
self.id = id
|
||||
self.title = title
|
||||
self.infoText = infoText
|
||||
self.items = items
|
||||
}
|
||||
}
|
||||
|
||||
extension MatrixListItemSectionData: Identifiable, Equatable {}
|
||||
|
||||
Reference in New Issue
Block a user